Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_posixsubprocess.c432 child_exec(char *const exec_array[], in child_exec() argument
567 for (i = 0; exec_array[i] != NULL; ++i) { in child_exec()
568 const char *executable = exec_array[i]; in child_exec()
633 char *const *exec_array, *const *argv = NULL, *const *envp = NULL; in subprocess_fork_exec() local
702 exec_array = _PySequence_BytesToCharpArray(executable_list); in subprocess_fork_exec()
703 if (!exec_array) in subprocess_fork_exec()
865 child_exec(exec_array, argv, envp, cwd, in subprocess_fork_exec()
889 _Py_FreeCharPArray(exec_array); in subprocess_fork_exec()
915 if (exec_array) in subprocess_fork_exec()
916 _Py_FreeCharPArray(exec_array); in subprocess_fork_exec()
/external/libwebsockets/lib/misc/
Dspawn.c463 execvp(i->exec_array[0], (char * const *)&i->exec_array[0]); in lws_spawn_piped()
465 execvpe(i->exec_array[0], (char * const *)&i->exec_array[0], in lws_spawn_piped()
469 lwsl_err("%s: child exec of %s failed %d\n", __func__, i->exec_array[0], in lws_spawn_piped()
/external/libwebsockets/include/libwebsockets/
Dlws-cgi.h73 lws_cgi(struct lws *wsi, const char * const *exec_array,
Dlws-misc.h752 const char * const *exec_array; member
/external/libwebsockets/lib/roles/cgi/
Dcgi-server.c72 lws_cgi(struct lws *wsi, const char * const *exec_array, in lws_cgi() argument
111 sum += lws_snprintf(sum, sumend - sum, "%s ", exec_array[0]); in lws_cgi()
322 p += lws_snprintf(p, end - p, "SCRIPT_PATH=%s", exec_array[0]); in lws_cgi()
352 info.exec_array = exec_array; in lws_cgi()