/third_party/musl/libc-test/src/functionalext/thread/ |
H A D | pthread_rwlock_wrlock.c | 48 EXPECT_EQ(pthread_rwlock_clockwrlock(&w_rwlock1, CLOCK_REALTIME, &ts), ETIMEDOUT); in RwlockClockRealTimeOut2() local 98 EXPECT_EQ(pthread_rwlock_clockwrlock(&w_rwlock5, CLOCK_MONOTONIC, &ts), ETIMEDOUT); in RwlockClockMonotonicTimeOut2() local 147 EXPECT_EQ(pthread_rwlock_timedwrlock_monotonic_np(&w_rwlock3, &ts), ETIMEDOUT); in RwlockMonotonicTime2() local 186 EXPECT_EQ(pthread_rwlock_timedwrlock_monotonic_np(&w, &ts), ETIMEDOUT); in pthread_rwlock_timedwrlock_0010() local 205 EXPECT_EQ(pthread_rwlock_clockwrlock(&w, clock_id, &ts), ETIMEDOUT); in pthread_rwlock_timedwrlock_0020() local 224 EXPECT_EQ(pthread_rwlock_clockwrlock(&w, clock_id, &ts), ETIMEDOUT); in pthread_rwlock_timedwrlock_0030() local
|
H A D | pthread_cond_timedwait.c | 70 EXPECT_EQ(pthread_cond_timedwait(&cond, &mutex, &ts), ETIMEDOUT); in pthread_cond_timedwait_0010() local 120 EXPECT_EQ(__pthread_cond_timedwait_time64(&cond, &mutex, &ts), ETIMEDOUT); in pthread_cond_timedwait_time64_0010() local 145 EXPECT_EQ(pthread_cond_timedwait_monotonic_np(&cond, &mutex, &ts), ETIMEDOUT); in pthread_cond_timedwait_monotonic_np_0010() local 177 EXPECT_EQ(pthread_cond_timeout_np(&cond, &mutex, ms), ETIMEDOUT); in pthread_cond_timeout_np_0010() local 203 EXPECT_EQ(pthread_cond_clockwait(&cond, &mutex, clock_id, &ts), ETIMEDOUT); in pthread_cond_clockwait_0010() local 205 EXPECT_EQ(pthread_cond_clockwait(&cond, &mutex, clock_id, &ts), ETIMEDOUT); in pthread_cond_clockwait_0010() local 226 EXPECT_EQ(pthread_cond_timedwait_monotonic_np(&cond, &mutex, &ts), ETIMEDOUT); in pthread_cond_timedwait_Time_0010() local 285 EXPECT_EQ(pthread_cond_clockwait(&c_cond2, &c_mtx2, clock_id, &ts), ETIMEDOUT); in ClockWaitTimeOut() local 363 EXPECT_EQ(pthread_cond_clockwait(&c_cond2, &c_mtx10, clock_id, &ts), ETIMEDOUT); in ClockWaitTimeOut2() local 401 EXPECT_EQ(pthread_cond_clockwait(&c_cond4, &c_mtx4, clock_id, &ts), ETIMEDOUT); in ClockWaitTimeMismatch() local 467 EXPECT_EQ(pthread_cond_clockwait(&c_cond6, &c_mtx6, CLOCK_REALTIME, &ts), ETIMEDOUT); ClockWaitTimeMismatch3() local 587 EXPECT_EQ(pthread_cond_timedwait_monotonic_np(&m_cond2, &m_mtx2, &ts), ETIMEDOUT); PthreadCondMonotonicTimeOut() local 693 EXPECT_EQ(pthread_cond_timeout_np(&u_cond2, &u_mtx2, ms), ETIMEDOUT); PthreadCondUnsignedTimeOut() local [all...] |
H A D | pthread_mutex_ext.c | 29 TEST(pthread_mutex_clocklock(mtx, CLOCK_REALTIME, &ts) == ETIMEDOUT); in PthreadClocklockOutRealTime() 97 TEST(pthread_mutex_clocklock(mtx, CLOCK_MONOTONIC, &ts) == ETIMEDOUT); in PthreadClocklockOutMonoTime() 168 TEST(pthread_mutex_clocklock(mtx, CLOCK_REALTIME, &ts) == ETIMEDOUT); in PthreadClocklockOutRealTime2() 244 TEST(pthread_mutex_timedlock_monotonic_np(mtx, &ts) == ETIMEDOUT); in PthreadTimedlockMonotonicNPOut() 327 TEST(pthread_mutex_lock_timeout_np(mtx, ms) == ETIMEDOUT); in PthreadLockTimeoutNPOut()
|
H A D | pthread_rwlock_rdlock.c | 78 TEST(pthread_rwlock_clockrdlock(&g_rwlock2, CLOCK_REALTIME, &ts) == ETIMEDOUT); in PthreadClockRdlockOutRealTimeR2() 163 TEST(pthread_rwlock_clockrdlock(&g_rwlock4, CLOCK_MONOTONIC, &ts) == ETIMEDOUT); in PthreadClockRdlockOutMonoTimeR2() 247 TEST(pthread_rwlock_timedrdlock_monotonic_np(&g_rwlock6, &ts) == ETIMEDOUT); in PthreadTimedRdlockMonoNPOutR2()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
H A D | thread_mutex_test.cpp | 184 EXPECT_EQ(ETIMEDOUT, pthread_mutex_timedlock(&mutex_, &timeSpec_)); in HWTEST_F() 221 EXPECT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(joinResult)); in HWTEST_F() 235 EXPECT_EQ(ETIMEDOUT, pthread_mutex_timedlock_monotonic_np(&mutex_, &timeSpec_)); in HWTEST_F() 272 EXPECT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(joinResult)); in HWTEST_F() 287 EXPECT_EQ(ETIMEDOUT, pthread_mutex_clocklock(&mutex_, CLOCK_MONOTONIC, &timeSpec_)); in HWTEST_F() 309 EXPECT_EQ(ETIMEDOUT, pthread_mutex_clocklock(&mutex_, CLOCK_REALTIME, &timeSpec_)); in HWTEST_F() 346 EXPECT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(joinResult)); in HWTEST_F() 376 EXPECT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(joinResult)); in HWTEST_F()
|
/third_party/ltp/testcases/kernel/syscalls/futex/ |
H A D | futex_wait05.c | 32 if (TST_ERR != ETIMEDOUT) { in sample_fn() 34 tst_strerrno(ETIMEDOUT)); in sample_fn()
|
H A D | futex_wait01.c | 26 {&futex, FUTEX_INITIALIZER, 0, ETIMEDOUT}, 28 {&futex, FUTEX_INITIALIZER, FUTEX_PRIVATE_FLAG, ETIMEDOUT},
|
H A D | futex_wait_bitset01.c | 66 if (TST_ERR != ETIMEDOUT) { in verify_futex_wait_bitset() 68 tst_strerrno(ETIMEDOUT)); in verify_futex_wait_bitset()
|
/third_party/rust/crates/nix/src/ |
H A D | errno.rs | 218 ETIMEDOUT => "Connection timed out", 1232 ETIMEDOUT = libc::ETIMEDOUT, 1377 libc::ETIMEDOUT => ETIMEDOUT, 1474 ETIMEDOUT = libc::ETIMEDOUT, 1592 libc::ETIMEDOUT => ETIMEDOUT, 1710 ETIMEDOUT [all...] |
/third_party/ltp/lib/ |
H A D | tst_process_state.c | 34 errno = ETIMEDOUT; in tst_process_state_wait() 84 errno = ETIMEDOUT; in tst_process_exit_wait()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_pthread.h | 51 // Get this included so ETIMEDOUT is predefined. 180 #if defined(WIN32) || !defined(ETIMEDOUT) 181 #undef ETIMEDOUT macro 182 #define ETIMEDOUT DNG_ETIMEDOUT macro
|
/third_party/ffmpeg/libavformat/ |
H A D | network.c | 93 return AVERROR(ETIMEDOUT); in ff_network_wait_fd_timeout() 110 return AVERROR(ETIMEDOUT); in ff_network_sleep_interruptible() 135 return AVERROR(ETIMEDOUT); in ff_neterrno() 179 return AVERROR(ETIMEDOUT); in ff_poll_interrupt() 464 if (last_err < 0 && last_err != AVERROR(ETIMEDOUT)) in ff_connect_parallel() 494 last_err = AVERROR(ETIMEDOUT); in ff_connect_parallel()
|
/third_party/musl/src/thread/ |
H A D | pthread_join.c | 50 while ((state = t->detach_state) && r != ETIMEDOUT && r != EINVAL) { in __pthread_timedjoin_np() 55 if (r == ETIMEDOUT || r == EINVAL) return r; in __pthread_timedjoin_np()
|
H A D | __timedwait.c | 62 if (to.tv_sec < 0) return ETIMEDOUT; in __timedwait_cp() 67 if (r != EINTR && r != ETIMEDOUT && r != ECANCELED) r = 0; in __timedwait_cp()
|
H A D | pthread_mutex_timedlock.c | 47 case ETIMEDOUT: in pthread_mutex_timedlock_pi() 53 while (e != ETIMEDOUT); in pthread_mutex_timedlock_pi()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_send/ |
H A D | 5-1.c | 121 if (sync_pipe_wait_select(sync_pipes, 1) != -ETIMEDOUT) { in main() 134 if (sync_pipe_wait_select(sync_pipes, 5) == -ETIMEDOUT) { in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
H A D | pthread_rwlock_timedwrlock.c | 65 EXPECT_EQ("pthread_rwlock_timedwrlock_0200", rev, ETIMEDOUT); in pthread_rwlock_timedwrlock_0200() 89 EXPECT_EQ("pthread_rwlock_timedwrlock_0300", rev, ETIMEDOUT); in pthread_rwlock_timedwrlock_0300()
|
/third_party/skia/third_party/externals/microhttpd/src/include/ |
H A D | w32functions.h | 149 #ifndef ETIMEDOUT 150 #define ETIMEDOUT (MHDW32ERRBASE+36) macro
|
/third_party/musl/porting/liteos_a/user/src/thread/ |
H A D | __timedwait.c | 59 if (to.tv_sec < 0) return ETIMEDOUT; in __timedwait_cp() 64 if (r != EINTR && r != ETIMEDOUT && r != ECANCELED) r = 0; in __timedwait_cp()
|
H A D | pthread_mutex_timedlock.c | 46 case ETIMEDOUT: in pthread_mutex_timedlock_pi() 52 while (e != ETIMEDOUT); in pthread_mutex_timedlock_pi()
|
/third_party/musl/porting/linux/user/src/thread/ |
H A D | pthread_mutex_timedlock.c | 62 case ETIMEDOUT: in pthread_mutex_timedlock_pi() 68 while (e != ETIMEDOUT); in pthread_mutex_timedlock_pi()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/ |
H A D | 5-1.c | 21 * 5. The thread call pthread_rwlock_timedrdlock(). Should _NOT_ get ETIMEDOUT. 60 if (rc == ETIMEDOUT) { in fn_rd_1() 105 if (rc == ETIMEDOUT) { in fn_rd_2() 156 ("Test FAILED: thread1 incorrectly received ETIMEDOUT\n"); in main() 193 ("Test FAILED: thread2 incorrectly received ETIMEDOUT\n"); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/ |
H A D | 5-1.c | 21 * 6. The thread call pthread_rwlock_timedwrlock(). Should not get ETIMEDOUT. 67 if (rc == ETIMEDOUT) { in fn_wr_1() 111 if (rc == ETIMEDOUT) { in fn_wr_2()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | winerrno.h | 58 #undef ETIMEDOUT macro 59 #define ETIMEDOUT WSAETIMEDOUT macro
|
/third_party/ltp/testcases/misc/math/float/ |
H A D | thread_code.c | 55 if (errno == ETIMEDOUT || errno == EINTR || errno == 0) { in read_file() 84 if (errno == ETIMEDOUT || errno == EINTR || errno == 0) { in read_file() 96 if (errno == ETIMEDOUT || errno == EINTR || errno == 0) { in read_file()
|