/external/clang/tools/scan-build-py/tests/functional/exec/ |
D | CMakeLists.txt | 19 check_function_exists(execvpe HAVE_EXECVPE)
|
D | main.c | 176 FORK(execvpe(compiler, argv, envp);) in call_execvpe()
|
/external/musl/src/process/ |
D | execvp.c | 60 weak_alias(__execvpe, execvpe);
|
/external/python/cpython2/Lib/ |
D | os.py | 338 execvpe(file, args[:-1], env) 348 def execvpe(file, args, env): function 597 return _spawnvef(mode, file, args, env, execvpe)
|
D | subprocess.py | 999 os.execvpe(executable, args, env)
|
/external/iproute2/tc/ |
D | e_bpf.c | 160 return execvpe(argv_run[0], argv_run, envp_run); in parse_bpf()
|
/external/python/cpython3/Lib/ |
D | os.py | 566 execvpe(file, args[:-1], env) 576 def execvpe(file, args, env): function 911 return _spawnvef(mode, file, args, env, execvpe)
|
/external/python/cpython2/Lib/distutils/ |
D | spawn.py | 142 exec_fn = search_path and os.execvpe or os.execve
|
/external/libwebsockets/cmake/ |
D | lws_config_private.h.in | 83 /* Define to 1 if execvpe() exists */
|
/external/musl/include/ |
D | unistd.h | 181 int execvpe(const char *, char *const [], char *const []);
|
/external/clang/tools/scan-build-py/libear/ |
D | ear.c | 179 int execvpe(const char *file, char *const argv[], char *const envp[]) { in execvpe() function
|
/external/libwebsockets/lib/plat/unix/ |
D | unix-spawn.c | 559 execvpe(i->exec_array[0], (char * const *)&i->exec_array[0], in lws_spawn_piped()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 640 /// int execvpe(const char *file, char *const argv[], char *const envp[]); 641 TLI_DEFINE_ENUM_INTERNAL(execvpe) 642 TLI_DEFINE_STRING_INTERNAL("execvpe")
|
/external/rust/crates/libc/src/windows/ |
D | mod.rs | 462 pub fn execvpe( in execvpe() function
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 570 os.execvpe(self.command, self.args, self.env)
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 605 self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
|
/external/rust/crates/nix/test/ |
D | test_unistd.rs | 426 execve_test_factory!(test_execvpe, execvpe, &CString::new("sh").unwrap());
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 1960 self.assertRaises(OSError, os.execvpe, 'no such app-', 1970 self.assertRaises(ValueError, os.execvpe, 'notepad', [], None) 1971 self.assertRaises(ValueError, os.execvpe, 'notepad', [], {}) 1972 self.assertRaises(ValueError, os.execvpe, 'notepad', [''], {})
|
/external/rust/crates/nix/src/ |
D | unistd.rs | 873 pub fn execvpe<SA: AsRef<CStr>, SE: AsRef<CStr>>(filename: &CStr, args: &[SA], env: &[SE]) -> Resul… 878 libc::execvpe(filename.as_ptr(), args_p.as_ptr(), env_p.as_ptr())
|
/external/rust/crates/nix/ |
D | CHANGELOG.md | 588 - Changed unistd::{execv,execve,execvp,execvpe,fexecve,execveat} to take both `&[&CStr]` and `&[CSt… 1026 - Added `unistd::execvpe` for Haiku, Linux and OpenBSD 1321 `execvpe` is no longer supported, but this was already broken and will be added back in the next
|
/external/rust/crates/libc/src/unix/linux_like/ |
D | mod.rs | 1765 pub fn execvpe( in execvpe() function
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
D | mod.rs | 1745 pub fn execvpe( in execvpe() function
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 348 :meth:`os.execvpe`-like behavior to execute the child program. On Windows, 369 platform dependent. For POSIX, see :meth:`os.execvpe`, and note that
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1713 execvpe(file, args, env) 1736 :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the 1745 For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` (note
|
/external/rust/crates/libc/src/unix/haiku/ |
D | mod.rs | 1746 pub fn execvpe( in execvpe() function
|