Lines Matching refs:value
40 result = tomoyo_path_matches_pattern(&arg, argv->value); in tomoyo_argv()
66 struct tomoyo_path_info value; in tomoyo_envp() local
70 value.name = env_value; in tomoyo_envp()
71 tomoyo_fill_path_info(&value); in tomoyo_envp()
78 if (envp->value) { in tomoyo_envp()
79 result = tomoyo_path_matches_pattern(&value, in tomoyo_envp()
80 envp->value); in tomoyo_envp()
213 if ((!envp->value && !envp->is_not) || in tomoyo_scan_bprm()
214 (envp->value && envp->is_not)) in tomoyo_scan_bprm()
305 argv->value = tomoyo_get_dqword(right); in tomoyo_parse_argv()
306 return argv->value != NULL; in tomoyo_parse_argv()
322 const struct tomoyo_path_info *value; in tomoyo_parse_envp() local
334 value = NULL; in tomoyo_parse_envp()
336 value = tomoyo_get_dqword(right); in tomoyo_parse_envp()
337 if (!value) { in tomoyo_parse_envp()
343 envp->value = value; in tomoyo_parse_envp()
837 unsigned long value = 0; in tomoyo_condition() local
841 value = from_kuid(&init_user_ns, current_uid()); in tomoyo_condition()
844 value = from_kuid(&init_user_ns, current_euid()); in tomoyo_condition()
847 value = from_kuid(&init_user_ns, current_suid()); in tomoyo_condition()
850 value = from_kuid(&init_user_ns, current_fsuid()); in tomoyo_condition()
853 value = from_kgid(&init_user_ns, current_gid()); in tomoyo_condition()
856 value = from_kgid(&init_user_ns, current_egid()); in tomoyo_condition()
859 value = from_kgid(&init_user_ns, current_sgid()); in tomoyo_condition()
862 value = from_kgid(&init_user_ns, current_fsgid()); in tomoyo_condition()
865 value = tomoyo_sys_getpid(); in tomoyo_condition()
868 value = tomoyo_sys_getppid(); in tomoyo_condition()
871 value = S_IFSOCK; in tomoyo_condition()
874 value = S_IFLNK; in tomoyo_condition()
877 value = S_IFREG; in tomoyo_condition()
880 value = S_IFBLK; in tomoyo_condition()
883 value = S_IFDIR; in tomoyo_condition()
886 value = S_IFCHR; in tomoyo_condition()
889 value = S_IFIFO; in tomoyo_condition()
892 value = S_ISUID; in tomoyo_condition()
895 value = S_ISGID; in tomoyo_condition()
898 value = S_ISVTX; in tomoyo_condition()
901 value = 0400; in tomoyo_condition()
904 value = 0200; in tomoyo_condition()
907 value = 0100; in tomoyo_condition()
910 value = 0040; in tomoyo_condition()
913 value = 0020; in tomoyo_condition()
916 value = 0010; in tomoyo_condition()
919 value = 0004; in tomoyo_condition()
922 value = 0002; in tomoyo_condition()
925 value = 0001; in tomoyo_condition()
930 value = bprm->argc; in tomoyo_condition()
935 value = bprm->envc; in tomoyo_condition()
999 value = from_kuid(&init_user_ns, stat->uid); in tomoyo_condition()
1005 value = from_kgid(&init_user_ns, stat->gid); in tomoyo_condition()
1011 value = stat->ino; in tomoyo_condition()
1015 value = MAJOR(stat->dev); in tomoyo_condition()
1019 value = MINOR(stat->dev); in tomoyo_condition()
1023 value = stat->mode & S_IFMT; in tomoyo_condition()
1027 value = MAJOR(stat->rdev); in tomoyo_condition()
1031 value = MINOR(stat->rdev); in tomoyo_condition()
1037 value = stat->mode & S_IALLUGO; in tomoyo_condition()
1043 max_v[j] = value; in tomoyo_condition()
1044 min_v[j] = value; in tomoyo_condition()