/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | call_once.c | 50 thrd_create(&t1, (thrd_start_t)func, NULL); in main() 51 thrd_create(&t2, (thrd_start_t)func, NULL); in main() 52 thrd_create(&t3, (thrd_start_t)func, NULL); in main() 53 thrd_create(&t4, (thrd_start_t)func, NULL); in main()
|
D | mtx_lock.c | 87 thrd_create(&tid1, threadfuncA, NULL); in mtx_lock_0100() 112 thrd_create(&tid2, threadfuncB, NULL); in mtx_lock_0200() 137 thrd_create(&tid3, threadfuncC, NULL); in mtx_lock_0300() 162 thrd_create(&tid4, threadfuncD, NULL); in mtx_lock_0400() 188 thrd_create(&tid5, threadfuncE, NULL); in mtx_lock_0500()
|
D | thrd_create.c | 46 result = thrd_create(&id, threadfunc, NULL); in thrd_create_0100() 77 result = thrd_create(&id, threadfunc, (char *)src); in thrd_create_0200() 105 thrd_create(NULL, threadfunc, NULL); in thrd_create_0300()
|
D | thrd_current.c | 52 result = thrd_create(&thr, threadfuncA, NULL); in thrd_current_0100() 83 result = thrd_create(&thr1, threadfuncB, NULL); in thrd_current_0200() 88 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_current_0200()
|
D | thrd_equal.c | 52 result = thrd_create(&thr, threadfuncA, NULL); in thrd_equal_0100() 83 result = thrd_create(&thr1, threadfuncB, NULL); in thrd_equal_0200() 88 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_equal_0200()
|
D | thrd_detach.c | 49 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0100() 77 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0200()
|
D | thrd_join.c | 43 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0100() 74 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0200()
|
D | mtx_trylock.c | 58 result = thrd_create(&tid1, threadfuncA, NULL); in mtx_trylock_0100() 83 result = thrd_create(&tid2, threadfuncB, NULL); in mtx_trylock_0200()
|
D | cnd_timedwait.c | 65 if (thrd_create(&id, signal_parent, NULL) != thrd_success) { in cnd_timedwait_0100() 109 if (thrd_create(&id, signal_parent, NULL) != thrd_success) { in cnd_timedwait_time64_0100()
|
D | mtx_unlock.c | 45 result = thrd_create(&tid1, threadfuncA, NULL); in mtx_unlock_0100()
|
D | cnd_wait.c | 42 ret = thrd_create(&id1, (thrd_start_t)cnd_waitfirst, (void *)1); in cnd_wait_0100()
|
D | cnd_signal.c | 43 ret = thrd_create(&id1, (thrd_start_t)cnd_timedwaitfirst, (void *)1); in cnd_signal_0100()
|
D | tss_set.c | 59 result = thrd_create(&id, tssfunc, NULL); in tss_set_0100()
|
D | thrd_sleep.c | 53 result = thrd_create(&id, threadfunc, (void *)(&ts)); in thrd_sleep_0100()
|
D | cnd_broadcast.c | 55 if (thrd_create(&ids[i], child_wait, NULL) != thrd_success) { in cnd_broadcast_0100()
|
D | test_src_functionalext_supplement_thread.gni | 55 "thrd_create",
|
/third_party/musl/src/thread/ |
D | thrd_create.c | 4 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create() function
|
/third_party/mesa3d/src/util/ |
D | u_thread.h | 117 ret = thrd_create( &thread, routine, param ); in u_thread_create() 121 ret = thrd_create( &thread, routine, param ); in u_thread_create()
|
/third_party/mesa3d/src/util/tests/sparse_array/ |
D | multi_threaded.c | 60 int ret = thrd_create(&threads[i], test_thread, &arr); in run_test()
|
/third_party/musl/ndk_musl_include/ |
D | threads.h | 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/include/ |
D | threads.h | 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/flutter/glfw/tests/ |
D | empty.c | 97 if (thrd_create(&thread, thread_main, NULL) != thrd_success) in main()
|
D | threads.c | 114 if (thrd_create(&threads[i].id, thread_main, threads + i) != in main()
|