Lines Matching refs:argv
26 const int argc, const struct tomoyo_argv *argv, in tomoyo_argv() argument
33 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv()
36 if (index != argv->index) in tomoyo_argv()
40 result = tomoyo_path_matches_pattern(&arg, argv->value); in tomoyo_argv()
41 if (argv->is_not) in tomoyo_argv()
106 const u16 argc, const struct tomoyo_argv *argv, in tomoyo_scan_bprm() argument
161 arg_ptr, argc, argv, in tomoyo_scan_bprm()
201 if (argv[i].is_not) in tomoyo_scan_bprm()
300 struct tomoyo_argv *argv) in tomoyo_parse_argv() argument
302 if (tomoyo_parse_ulong(&argv->index, &left) != in tomoyo_parse_argv()
305 argv->value = tomoyo_get_dqword(right); in tomoyo_parse_argv()
306 return argv->value != NULL; in tomoyo_parse_argv()
501 struct tomoyo_argv *argv = NULL; in tomoyo_get_condition() local
565 if (!argv) { in tomoyo_get_condition()
572 argv->is_not = is_not; in tomoyo_get_condition()
574 right_word, argv++)) in tomoyo_get_condition()
677 argv = (struct tomoyo_argv *) (names_p + e.names_count); in tomoyo_get_condition()
678 envp = (struct tomoyo_envp *) (argv + e.argc); in tomoyo_get_condition()
774 const struct tomoyo_argv *argv; in tomoyo_condition() local
796 argv = (const struct tomoyo_argv *) (names_p + cond->names_count); in tomoyo_condition()
797 envp = (const struct tomoyo_envp *) (argv + argc); in tomoyo_condition()
1120 return tomoyo_scan_bprm(r->ee, argc, argv, envc, envp); in tomoyo_condition()