Lines Matching refs:argv
25 const int argc, const struct tomoyo_argv *argv, in tomoyo_argv() argument
31 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv()
33 if (index != argv->index) in tomoyo_argv()
37 result = tomoyo_path_matches_pattern(&arg, argv->value); in tomoyo_argv()
38 if (argv->is_not) in tomoyo_argv()
101 const u16 argc, const struct tomoyo_argv *argv, in tomoyo_scan_bprm() argument
154 arg_ptr, argc, argv, in tomoyo_scan_bprm()
192 if (argv[i].is_not) in tomoyo_scan_bprm()
288 struct tomoyo_argv *argv) in tomoyo_parse_argv() argument
290 if (tomoyo_parse_ulong(&argv->index, &left) != in tomoyo_parse_argv()
293 argv->value = tomoyo_get_dqword(right); in tomoyo_parse_argv()
294 return argv->value != NULL; in tomoyo_parse_argv()
484 struct tomoyo_argv *argv = NULL; in tomoyo_get_condition() local
546 if (!argv) { in tomoyo_get_condition()
553 argv->is_not = is_not; in tomoyo_get_condition()
555 right_word, argv++)) in tomoyo_get_condition()
658 argv = (struct tomoyo_argv *) (names_p + e.names_count); in tomoyo_get_condition()
659 envp = (struct tomoyo_envp *) (argv + e.argc); in tomoyo_get_condition()
753 const struct tomoyo_argv *argv; in tomoyo_condition() local
774 argv = (const struct tomoyo_argv *) (names_p + cond->names_count); in tomoyo_condition()
775 envp = (const struct tomoyo_envp *) (argv + argc); in tomoyo_condition()
1092 return tomoyo_scan_bprm(r->ee, argc, argv, envc, envp); in tomoyo_condition()