Home
last modified time | relevance | path

Searched refs:pthread_cond_destroy (Results 1 - 25 of 97) sorted by relevance

1234

/third_party/musl/libc-test/src/functionalext/thread/
H A 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( in clockwait_timedwait_0030()
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
H A D1-1.c8 * Test that pthread_cond_destroy()
53 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()
H A D3-1.c8 * Test that pthread_cond_destroy()
28 if ((rc = pthread_cond_destroy(&cond)) == 0) { in main()
H A 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/ffmpeg/libavutil/
H A 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()
H A 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()
H A 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/musl/libc-test/src/functional/
H A 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/selinux/libselinux/src/
H A Dselinux_internal.h83 #pragma weak pthread_cond_destroy macro
91 pthread_cond_destroy && \
/third_party/skia/third_party/externals/libwebp/src/utils/
H A 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/
H A 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/mesa3d/src/gallium/frontends/nine/
H A 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/mesa3d/src/vulkan/wsi/
H A 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/musl/src/thread/
H A Dpthread_cond_destroy.c3 int pthread_cond_destroy(pthread_cond_t *c) in pthread_cond_destroy() function
/third_party/musl/libc-test/src/functionalext/supplement/thread/
H A Dpthread_cond_destroy.c31 result = pthread_cond_destroy(&cond); in pthread_cond_destroy_0100()
33 t_error("%s pthread_cond_destroy failed\n", __func__); in pthread_cond_destroy_0100()
H A Dpthread_cond_timedwait_sup.c63 pthread_cond_destroy(&gcond); in pthread_cond_timedwait_0100()
/third_party/FreeBSD/sys/sys/
H A Dcondvar.h38 #define cv_destroy(cvd) (void)pthread_cond_destroy(cvd)
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
H A Dpthread_cond_test.cpp90 pthread_cond_destroy(&cond_); in HWTEST_F()
110 pthread_cond_destroy(&cond_); in HWTEST_F()
/third_party/ffmpeg/libavformat/
H A 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/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/speculative/
H A D4-1.c9 * Test that EBUSY is returned when pthread_cond_destroy() is called on a cond
60 printf("watchdog: pthread_cond_destroy() appears to be blocking\n"); in watchdog()
88 rc = pthread_cond_destroy(&cond); in main()
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DThread.cpp87 pthread_cond_destroy(&handle); in ~Event()
/third_party/ffmpeg/libavcodec/
H A Dpthread.c104 pthread_cond_destroy ((pthread_cond_t *)((char*)obj + *cur_offset)); in ff_pthread_free()
/third_party/ffmpeg/libavfilter/dnn/
H A Dsafe_queue.c31 #define dnn_cond_destroy pthread_cond_destroy
/third_party/musl/libc-test/src/regression/
H A Dpthread_condattr_setclock.c50 T(r,pthread_cond_destroy(&c)); in main()
/third_party/mesa3d/src/util/
H A Dcnd_monotonic.h79 pthread_cond_destroy(&cond->cond); in u_cnd_monotonic_destroy()

Completed in 10 milliseconds

1234