Home
last modified time | relevance | path

Searched refs:pthread_cond_destroy (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/musl/libc-test/src/functionalext/thread/
Dpthread_cond_timedwait.c72 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timedwait_0010()
95 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timedwait_0020()
122 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timedwait_time64_0010()
147 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timedwait_monotonic_np_0010()
179 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timeout_np_0010()
209 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_clockwait_0010()
229 EXPECT_EQ(pthread_cond_destroy(&cond), 0); in pthread_cond_timedwait_Time_0010()
273 EXPECT_EQ(pthread_cond_destroy(&c_cond1), 0); in clockwait_timedwait_0010()
307 EXPECT_EQ(pthread_cond_destroy(&c_cond2), 0); in clockwait_timedwait_0020()
351 EXPECT_EQ(pthread_cond_destroy(&c_cond3), 0); in clockwait_timedwait_0030()
[all …]
/third_party/ffmpeg/libavutil/
Dthreadmessage.c64 pthread_cond_destroy(&rmq->cond_recv); in av_thread_message_queue_alloc()
70 pthread_cond_destroy(&rmq->cond_send); in av_thread_message_queue_alloc()
71 pthread_cond_destroy(&rmq->cond_recv); in av_thread_message_queue_alloc()
99 pthread_cond_destroy(&(*mq)->cond_send); in av_thread_message_queue_free()
100 pthread_cond_destroy(&(*mq)->cond_recv); in av_thread_message_queue_free()
Dslicethread.c152 pthread_cond_destroy(&w->cond); in avpriv_slicethread_create()
226 pthread_cond_destroy(&w->cond); in avpriv_slicethread_free()
230 pthread_cond_destroy(&ctx->done_cond); in avpriv_slicethread_free()
Dthread.h101 ASSERT_PTHREAD(pthread_cond_destroy, cond); in strict_pthread_cond_destroy()
139 #define pthread_cond_destroy strict_pthread_cond_destroy macro
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
D1-1.c53 if ((rc = pthread_cond_destroy(&cond1)) != 0) { in main()
60 if ((rc = pthread_cond_destroy(&cond2)) != 0) { in main()
67 if ((rc = pthread_cond_destroy(&cond3)) != 0) { in main()
D3-1.c28 if ((rc = pthread_cond_destroy(&cond)) == 0) { in main()
Dcoverage.txt1 This document defines the coverage for the pthread_cond_destroy function:
D2-1.c613 ret = pthread_cond_destroy(&td->cnd); in main()
708 ret = pthread_cond_destroy(&td->cnd); in main()
776 ret = pthread_cond_destroy(&td->cnd); in main()
/third_party/musl/libc-test/src/functional/
Dpthread_cond.c50 TEST(r, pthread_cond_destroy(&cond), ""); in main()
76 TEST(r, pthread_cond_destroy(&cond), ""); in main()
96 TEST(r, pthread_cond_destroy(&cond), ""); in main()
/third_party/skia/third_party/externals/libwebp/src/utils/
Dthread_utils.c131 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy() function
154 pthread_cond_destroy(condition); in pthread_cond_init()
300 pthread_cond_destroy(&impl->condition_); in Reset()
337 pthread_cond_destroy(&impl->condition_); in End()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_init/
Ds-c.c189 ret = pthread_cond_destroy(&(cur->cnd[i])); in main()
197 ret = pthread_cond_destroy(&(cur->cnd[i])); in main()
244 ret = pthread_cond_destroy(&(cur->cnd[i])); in main()
/third_party/selinux/libselinux/src/
Dselinux_internal.h83 #pragma weak pthread_cond_destroy macro
91 pthread_cond_destroy && \
/third_party/mesa3d/src/vulkan/wsi/
Dwsi_common_queue.h70 pthread_cond_destroy(&queue->cond); in wsi_queue_init()
84 pthread_cond_destroy(&queue->cond); in wsi_queue_destroy()
/third_party/mesa3d/src/gallium/frontends/nine/
Dthreadpool.c125 pthread_cond_destroy(&pool->new_work); in _mesa_threadpool_destroy()
197 pthread_cond_destroy(&task->finish); in _mesa_threadpool_wait_for_task()
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
Dpthread_cond_test.cpp90 pthread_cond_destroy(&cond_);
110 pthread_cond_destroy(&cond_);
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_cond_destroy.c31 result = pthread_cond_destroy(&cond); in pthread_cond_destroy_0100()
Dpthread_cond_timedwait_sup.c63 pthread_cond_destroy(&gcond); in pthread_cond_timedwait_0100()
/third_party/ffmpeg/libavformat/
Dasync.c302 pthread_cond_destroy(&c->cond_wakeup_background); in async_open()
304 pthread_cond_destroy(&c->cond_wakeup_main); in async_open()
329 pthread_cond_destroy(&c->cond_wakeup_background); in async_close()
330 pthread_cond_destroy(&c->cond_wakeup_main); in async_close()
/third_party/musl/src/thread/
Dpthread_cond_destroy.c3 int pthread_cond_destroy(pthread_cond_t *c) in pthread_cond_destroy() function
/third_party/FreeBSD/sys/sys/
Dcondvar.h38 #define cv_destroy(cvd) (void)pthread_cond_destroy(cvd)
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/speculative/
D4-1.c88 rc = pthread_cond_destroy(&cond); in main()
/third_party/skia/third_party/externals/swiftshader/src/Common/
DThread.cpp87 pthread_cond_destroy(&handle); in ~Event()
/third_party/musl/libc-test/src/regression/
Dpthread_condattr_setclock.c50 T(r,pthread_cond_destroy(&c)); in main()
/third_party/musl/porting/liteos_m/user/hook/
Dlos_usr_libc.c246 int pthread_cond_destroy(pthread_cond_t *cond) in pthread_cond_destroy() function
248 return g_usrLibc->pthread_cond_destroy(cond); in pthread_cond_destroy()
/third_party/ffmpeg/libavfilter/dnn/
Dsafe_queue.c31 #define dnn_cond_destroy pthread_cond_destroy

12345