/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 110 int execv(const char *, char *const []);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 85 int execv(const char *, char *const []);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 91 int execv(const char *, char *const []);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 110 int execv(const char *, char *const []);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 85 int execv(const char *, char *const []);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 90 int execv(const char *, char *const []);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 85 int execv(const char *, char *const []);
|
/third_party/musl/include/ |
H A D | unistd.h | 128 int execv(const char *, char *const []);
|
/third_party/protobuf/conformance/ |
H A D | conformance_test_runner.cc | 305 GOOGLE_CHECK_SYSCALL(execv(executable.get(), const_cast<char **>(argv.data()))); in SpawnTestProgram()
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
H A D | test_utils_posix.cpp | 189 // Execute the application, which doesn't return unless failed. Note: execv takes argv in PosixProcess() 209 execv(commandLineArgs[0], args.data()); in PosixProcess()
|
H A D | crash_handler_posix.cpp | 407 execv(commandLine[0], const_cast<char *const *>(commandLine.data())); 464 "/usr/bin/addr2line", // execv requires an absolute path to find addr2line
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | subprocess.cc | 332 execv(argv[0], argv);
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | mount.c | 173 execv(FUSERMOUNT_DIR "/" FUSERMOUNT_PROG, (char **) argv); in exec_fusermount()
|
/third_party/libfuse/lib/ |
H A D | mount.c | 122 execv(FUSERMOUNT_DIR "/" FUSERMOUNT_PROG, (char **) argv); in exec_fusermount()
|
/third_party/musl/libc-test/src/api/ |
H A D | unistd.c | 264 {int(*p)(const char*,char*const[]) = execv;} in f()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | os_internal.c | 548 execv(program, argv); in os_exec() 549 wpa_printf(MSG_ERROR, "execv: %s", strerror(errno)); in os_exec()
|
H A D | os_unix.c | 828 execv(program, argv); in os_exec() 829 perror("execv"); in os_exec()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | os_internal.c | 554 execv(program, argv); in os_exec() 555 wpa_printf(MSG_ERROR, "execv: %s", strerror(errno)); in os_exec()
|
H A D | os_unix.c | 839 execv(program, argv); in os_exec() 840 perror("execv"); in os_exec()
|
/third_party/python/Modules/ |
H A D | _posixsubprocess.c | 706 execv(executable, argv); in child_exec()
|
/third_party/vk-gl-cts/framework/delibs/deutil/ |
H A D | deProcess.c | 130 execv(argList[0], argList); in execProcess() 133 dieLastError(statusPipe, "execv() failed"); in execProcess()
|
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 452 pub fn execv(prog: *const c_char, argv: *const *const c_char) -> ::intptr_t; in execv() functions
|
/third_party/pulseaudio/src/daemon/ |
H A D | main.c | 580 pa_assert_se(execv(rp, argv) == 0);
|
/third_party/toybox/lib/ |
H A D | xwrap.c | 288 execv(s, toys.argv); in xpopen_both()
|
/third_party/python/Lib/test/ |
H A D | test_os.py | 77 # when combining linuxthreads with a failed execv call: see 1969 Stubs out execv and execve functions when used as context manager. 1970 Records exec calls. The mock execv and execve functions always raise an 1974 # of calls to execv or execve that have been made. 1978 calls.append(('execv', name, args)) 1979 raise RuntimeError("execv called") 1986 orig_execv = os.execv 1989 os.execv = mock_execv 1995 os.execv = orig_execv 1999 @unittest.skipUnless(hasattr(os, 'execv'), [all...] |