Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/compat-43/
Dkillpg.c41 errno = ESRCH; in killpg()
/bionic/libc/bionic/
Dpthread_kill.cpp39 if (tid == -1) return ESRCH; in pthread_kill()
Dclock_getcpuclockid.cpp44 return ESRCH; in clock_getcpuclockid()
Dpthread_getcpuclockid.cpp35 if (tid == -1) return ESRCH; in pthread_getcpuclockid()
Dpthread_setschedparam.cpp38 if (tid == -1) return ESRCH; in pthread_setschedparam()
Dpthread_getschedparam.cpp38 if (tid == -1) return ESRCH; in pthread_getschedparam()
Dpthread_detach.cpp37 return ESRCH; in pthread_detach()
Dpthread_join.cpp41 return ESRCH; in pthread_join()
/bionic/libc/kernel/uapi/asm-generic/
Derrno-base.h24 #define ESRCH 3 macro
/bionic/tests/
Dleak_test.cpp62 EXPECT_EQ(errno, ESRCH); in WaitUntilAllExited()
Dtime_test.cpp551 while ((kill(tdd.tid, 0) != -1 || errno != ESRCH) && (time(NULL) - cur_time) < 5); in TEST()
553 ASSERT_EQ(ESRCH, errno); in TEST()
609 ASSERT_EQ(ESRCH, clock_getcpuclockid(GetInvalidPid(), &clockid)); in TEST()
Dpthread_test.cpp505 EXPECT_EQ(ESRCH, pthread_detach(null_thread)); in TEST_F()
533 EXPECT_EQ(ESRCH, pthread_getcpuclockid(null_thread, &c)); in TEST_F()
549 EXPECT_EQ(ESRCH, pthread_getschedparam(null_thread, &policy, &param)); in TEST_F()
565 EXPECT_EQ(ESRCH, pthread_setschedparam(null_thread, policy, &param)); in TEST_F()
577 EXPECT_EQ(ESRCH, pthread_join(null_thread, NULL)); in TEST_F()
589 EXPECT_EQ(ESRCH, pthread_kill(null_thread, 0)); in TEST_F()
/bionic/libc/private/
Dbionic_errdefs.h42 __BIONIC_ERRDEF( ESRCH , 3, "No such process" )
/bionic/libc/dns/resolv/
Dres_send.c394 errno = ESRCH; in res_nsend()