Home
last modified time | relevance | path

Searched refs:arg_ptr (Results 1 – 2 of 2) sorted by relevance

/linux/security/tomoyo/
H A Ddomain.c619 char *arg_ptr; /* Size is TOMOYO_EXEC_TMPSIZE bytes */ in tomoyo_environ() local
633 arg_ptr = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS); in tomoyo_environ()
634 if (!arg_ptr) in tomoyo_environ()
654 arg_ptr[arg_len++] = '\0'; in tomoyo_environ()
656 arg_ptr[arg_len++] = '\\'; in tomoyo_environ()
657 arg_ptr[arg_len++] = '\\'; in tomoyo_environ()
659 arg_ptr[arg_len++] = c; in tomoyo_environ()
661 arg_ptr[arg_len++] = '\\'; in tomoyo_environ()
662 arg_ptr[arg_len++] = (c >> 6) + '0'; in tomoyo_environ()
663 arg_ptr[arg_le in tomoyo_environ()
[all...]
H A Dcondition.c17 * @index: Index number of @arg_ptr.
18 * @arg_ptr: Contents of argv[@index].
25 static bool tomoyo_argv(const unsigned int index, const char *arg_ptr, in tomoyo_argv() argument
32 arg.name = arg_ptr; in tomoyo_argv()
111 char *arg_ptr = ee->tmp; in tomoyo_scan_bprm() local
142 arg_ptr[arg_len++] = '\\'; in tomoyo_scan_bprm()
143 arg_ptr[arg_len++] = '\\'; in tomoyo_scan_bprm()
145 arg_ptr[arg_len++] = c; in tomoyo_scan_bprm()
147 arg_ptr[arg_len++] = '\\'; in tomoyo_scan_bprm()
148 arg_ptr[arg_le in tomoyo_scan_bprm()
[all...]