Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_netbsd_libcdep.cpp291 int local_errno = 0; in StopTheWorld() local
292 if (internal_iserror(tracer_pid, &local_errno)) { in StopTheWorld()
293 VReport(1, "Failed spawning a tracer thread (errno %d).\n", local_errno); in StopTheWorld()
305 if (!internal_iserror(waitpid_status, &local_errno)) in StopTheWorld()
307 if (local_errno == EINTR) in StopTheWorld()
310 local_errno); in StopTheWorld()
Dsanitizer_posix_libcdep.cpp480 int local_errno; in IsProcessRunning() local
481 if (internal_iserror(waitpid_status, &local_errno)) { in IsProcessRunning()
482 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in IsProcessRunning()
491 int local_errno; in WaitForProcess() local
492 if (internal_iserror(waitpid_status, &local_errno)) { in WaitForProcess()
493 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in WaitForProcess()
Dsanitizer_stoptheworld_linux_libcdep.cpp437 int local_errno = 0; in StopTheWorld() local
438 if (internal_iserror(tracer_pid, &local_errno)) { in StopTheWorld()
439 VReport(1, "Failed spawning a tracer thread (errno %d).\n", local_errno); in StopTheWorld()
461 if (!internal_iserror(waitpid_status, &local_errno)) in StopTheWorld()
463 if (local_errno == EINTR) in StopTheWorld()
466 local_errno); in StopTheWorld()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_posix_libcdep.cc387 int local_errno; in IsProcessRunning() local
388 if (internal_iserror(waitpid_status, &local_errno)) { in IsProcessRunning()
389 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in IsProcessRunning()
398 int local_errno; in WaitForProcess() local
399 if (internal_iserror(waitpid_status, &local_errno)) { in WaitForProcess()
400 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in WaitForProcess()
Dsanitizer_stoptheworld_linux_libcdep.cc414 int local_errno = 0; in StopTheWorld() local
415 if (internal_iserror(tracer_pid, &local_errno)) { in StopTheWorld()
416 VReport(1, "Failed spawning a tracer thread (errno %d).\n", local_errno); in StopTheWorld()
440 if (!internal_iserror(waitpid_status, &local_errno)) in StopTheWorld()
442 if (local_errno == EINTR) in StopTheWorld()
445 local_errno); in StopTheWorld()