Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_posixsubprocess.c398 child_exec(char *const exec_array[], in child_exec() argument
511 for (i = 0; exec_array[i] != NULL; ++i) { in child_exec()
512 const char *executable = exec_array[i]; in child_exec()
571 char *const *exec_array, *const *argv = NULL, *const *envp = NULL; in subprocess_fork_exec() local
623 exec_array = _PySequence_BytesToCharpArray(executable_list); in subprocess_fork_exec()
624 if (!exec_array) in subprocess_fork_exec()
703 child_exec(exec_array, argv, envp, cwd, in subprocess_fork_exec()
725 _Py_FreeCharPArray(exec_array); in subprocess_fork_exec()
749 if (exec_array) in subprocess_fork_exec()
750 _Py_FreeCharPArray(exec_array); in subprocess_fork_exec()