Home
last modified time | relevance | path

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

/external/minijail/
Dsyscall_filter.c191 char *argidx_str = strtok_r(atom, " ", &atom_ptr); in compile_atom() local
192 if (argidx_str == NULL) { in compile_atom()
199 compiler_warn(state, "invalid atom '%s'", argidx_str); in compile_atom()
205 compiler_warn(state, "invalid atom '%s %s'", argidx_str, in compile_atom()
217 if (strncmp(argidx_str, "arg", 3)) { in compile_atom()
218 compiler_warn(state, "invalid argument token '%s'", argidx_str); in compile_atom()
223 long int argidx = strtol(argidx_str + 3, &argidx_ptr, 10); in compile_atom()
228 if (argidx_ptr == argidx_str + 3 || *argidx_ptr != '\0') { in compile_atom()
230 argidx_str + 3); in compile_atom()