Lines Matching refs:value

37 		result = tomoyo_path_matches_pattern(&arg, argv->value);  in tomoyo_argv()
63 struct tomoyo_path_info value; in tomoyo_envp() local
66 value.name = env_value; in tomoyo_envp()
67 tomoyo_fill_path_info(&value); in tomoyo_envp()
73 if (envp->value) { in tomoyo_envp()
74 result = tomoyo_path_matches_pattern(&value, in tomoyo_envp()
75 envp->value); in tomoyo_envp()
204 if ((!envp->value && !envp->is_not) || in tomoyo_scan_bprm()
205 (envp->value && envp->is_not)) in tomoyo_scan_bprm()
293 argv->value = tomoyo_get_dqword(right); in tomoyo_parse_argv()
294 return argv->value != NULL; in tomoyo_parse_argv()
310 const struct tomoyo_path_info *value; in tomoyo_parse_envp() local
321 value = NULL; in tomoyo_parse_envp()
323 value = tomoyo_get_dqword(right); in tomoyo_parse_envp()
324 if (!value) { in tomoyo_parse_envp()
330 envp->value = value; in tomoyo_parse_envp()
813 unsigned long value = 0; in tomoyo_condition() local
816 value = from_kuid(&init_user_ns, current_uid()); in tomoyo_condition()
819 value = from_kuid(&init_user_ns, current_euid()); in tomoyo_condition()
822 value = from_kuid(&init_user_ns, current_suid()); in tomoyo_condition()
825 value = from_kuid(&init_user_ns, current_fsuid()); in tomoyo_condition()
828 value = from_kgid(&init_user_ns, current_gid()); in tomoyo_condition()
831 value = from_kgid(&init_user_ns, current_egid()); in tomoyo_condition()
834 value = from_kgid(&init_user_ns, current_sgid()); in tomoyo_condition()
837 value = from_kgid(&init_user_ns, current_fsgid()); in tomoyo_condition()
840 value = tomoyo_sys_getpid(); in tomoyo_condition()
843 value = tomoyo_sys_getppid(); in tomoyo_condition()
846 value = S_IFSOCK; in tomoyo_condition()
849 value = S_IFLNK; in tomoyo_condition()
852 value = S_IFREG; in tomoyo_condition()
855 value = S_IFBLK; in tomoyo_condition()
858 value = S_IFDIR; in tomoyo_condition()
861 value = S_IFCHR; in tomoyo_condition()
864 value = S_IFIFO; in tomoyo_condition()
867 value = S_ISUID; in tomoyo_condition()
870 value = S_ISGID; in tomoyo_condition()
873 value = S_ISVTX; in tomoyo_condition()
876 value = S_IRUSR; in tomoyo_condition()
879 value = S_IWUSR; in tomoyo_condition()
882 value = S_IXUSR; in tomoyo_condition()
885 value = S_IRGRP; in tomoyo_condition()
888 value = S_IWGRP; in tomoyo_condition()
891 value = S_IXGRP; in tomoyo_condition()
894 value = S_IROTH; in tomoyo_condition()
897 value = S_IWOTH; in tomoyo_condition()
900 value = S_IXOTH; in tomoyo_condition()
905 value = bprm->argc; in tomoyo_condition()
910 value = bprm->envc; in tomoyo_condition()
973 value = from_kuid(&init_user_ns, stat->uid); in tomoyo_condition()
979 value = from_kgid(&init_user_ns, stat->gid); in tomoyo_condition()
985 value = stat->ino; in tomoyo_condition()
989 value = MAJOR(stat->dev); in tomoyo_condition()
993 value = MINOR(stat->dev); in tomoyo_condition()
997 value = stat->mode & S_IFMT; in tomoyo_condition()
1001 value = MAJOR(stat->rdev); in tomoyo_condition()
1005 value = MINOR(stat->rdev); in tomoyo_condition()
1011 value = stat->mode & S_IALLUGO; in tomoyo_condition()
1017 max_v[j] = value; in tomoyo_condition()
1018 min_v[j] = value; in tomoyo_condition()