/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/sys/ |
_errdefs.h | 41 __BIONIC_ERRDEF( ESRCH , 3, "No such process" )
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/sys/ |
_errdefs.h | 41 __BIONIC_ERRDEF( ESRCH , 3, "No such process" )
|
/system/connectivity/shill/net/ |
rtnl_handler_unittest.cc | 304 { RTNLMessage::kTypeLink, RTNLMessage::kModeDelete, {ESRCH, ENODEV} }, 306 {ESRCH, ENODEV, EADDRNOTAVAIL} }
|
/system/core/libmemunreachable/ |
ThreadCapture.cpp | 179 if (ptrace(PTRACE_DETACH, tid, NULL, sig_ptr) < 0 && errno != ESRCH) { 200 if (errno == ESRCH) {
|
/toolchain/binutils/binutils-2.25/libiberty/ |
strerror.c | 82 #if defined (ESRCH) 83 ENTRY(ESRCH, "ESRCH", "No such process"),
|
/bionic/tests/ |
time_test.cpp | 503 while (pthread_detach(tdd.thread_id) != ESRCH && (time(NULL) - cur_time) < 5); 504 ASSERT_EQ(ESRCH, pthread_detach(tdd.thread_id)); 560 ASSERT_EQ(ESRCH, clock_getcpuclockid(GetInvalidPid(), &clockid));
|
/external/strace/ |
strace.c | 383 * Returns 0 on success or if error was ESRCH 421 if (err == ESRCH) 781 * attached-unstopped processes give the same ESRCH. For unattached process we 815 if (errno != ESRCH) { 820 /* ESRCH: process is either not stopped or doesn't exist. */ 822 if (errno != ESRCH) 839 if (errno != ESRCH) 846 if (errno != ESRCH) 931 * Note: ptrace_restart returns 0 on ESRCH, so it's not it. [all...] |
/external/opencv3/3rdparty/openexr/Iex/ |
IexThrowErrnoExc.cpp | 73 #if defined (ESRCH) 74 case ESRCH:
|
/external/c-ares/ |
ares_gethostbyaddr.c | 232 case ESRCH:
|
ares_search.c | 298 case ESRCH:
|
setup_once.h | 468 #define ESRCH ERROR_PATH_NOT_FOUND
|
/external/libbrillo/brillo/errors/ |
error_codes.cc | 37 ERROR_ENTRY(ESRCH), // No such process
|
/external/libchrome/base/process/ |
process_posix.cc | 108 if (errno == ESRCH) {
|
/external/libcxx/test/std/diagnostics/syserr/ |
errc.pass.cpp | 70 static_assert(static_cast<int>(std::errc::no_such_process) == ESRCH, "");
|
/external/libdaemon/libdaemon/ |
dpid.c | 203 if ((r = kill(pid, 0)) < 0 && errno != ESRCH)
|
/external/llvm/lib/Support/ |
LockFileManager.cpp | 107 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH)
|
/external/toybox/toys/pending/ |
last.c | 155 if ((ut.ut_pid > 0) && (kill(ut.ut_pid, 0)!=0) && (errno == ESRCH))
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/ |
errc.pass.cpp | 70 static_assert(static_cast<int>(std::errc::no_such_process) == ESRCH, "");
|
/prebuilts/go/darwin-x86/src/syscall/ |
zerrors_windows.go | 133 ESRCH 268 ESRCH - APPLICATION_ERROR: "no such process",
|
/prebuilts/go/linux-x86/src/syscall/ |
zerrors_windows.go | 133 ESRCH 268 ESRCH - APPLICATION_ERROR: "no such process",
|
/libcore/luni/src/main/java/android/system/ |
OsConstants.java | 233 public static final int ESRCH = placeholder(); [all...] |
/system/netd/server/ |
NetworkController.cpp | 175 return -ESRCH; 649 return -ESRCH;
|
/external/dhcpcd-6.8.2/ |
ipv4.c | 403 if (ort && if_route(RTM_DELETE, ort) == -1 && errno != ESRCH) 416 if (ort && if_route(RTM_DELETE, ort) == -1 && errno != ESRCH) 434 if (retval != 0 && errno != ENOENT && errno != ESRCH) 1041 errno = ESRCH;
|
/external/wpa_supplicant_8/src/l2_packet/ |
l2_packet_freebsd.c | 219 errno = ESRCH;
|
/system/connectivity/shill/ |
process_manager.cc | 263 if (errno == ESRCH) {
|