Home
last modified time | relevance | path

Searched refs:thrd_create (Results 1 – 25 of 37) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dcall_once.c50 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()
Dmtx_lock.c87 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()
Dthrd_create.c46 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()
Dthrd_current.c52 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()
Dthrd_equal.c52 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()
Dthrd_detach.c49 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0100()
77 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0200()
Dthrd_join.c43 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0100()
74 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0200()
Dmtx_trylock.c58 result = thrd_create(&tid1, threadfuncA, NULL); in mtx_trylock_0100()
83 result = thrd_create(&tid2, threadfuncB, NULL); in mtx_trylock_0200()
Dcnd_timedwait.c65 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()
Dmtx_unlock.c45 result = thrd_create(&tid1, threadfuncA, NULL); in mtx_unlock_0100()
Dcnd_wait.c42 ret = thrd_create(&id1, (thrd_start_t)cnd_waitfirst, (void *)1); in cnd_wait_0100()
Dcnd_signal.c43 ret = thrd_create(&id1, (thrd_start_t)cnd_timedwaitfirst, (void *)1); in cnd_signal_0100()
Dtss_set.c59 result = thrd_create(&id, tssfunc, NULL); in tss_set_0100()
Dthrd_sleep.c53 result = thrd_create(&id, threadfunc, (void *)(&ts)); in thrd_sleep_0100()
Dcnd_broadcast.c55 if (thrd_create(&ids[i], child_wait, NULL) != thrd_success) { in cnd_broadcast_0100()
Dtest_src_functionalext_supplement_thread.gni55 "thrd_create",
/third_party/musl/src/thread/
Dthrd_create.c4 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create() function
/third_party/mesa3d/src/util/
Du_thread.h122 ret = thrd_create(thrd, routine, param); in u_thread_create()
125 ret = thrd_create(thrd, routine, param); in u_thread_create()
/third_party/mesa3d/src/util/tests/
Dsparse_array_test.cpp58 int ret = thrd_create(&threads[i], test_thread, &arr); in TEST()
/third_party/musl/include/
Dthreads.h43 int thrd_create(thrd_t *, thrd_start_t, void *);
/third_party/musl/ndk_musl_include/
Dthreads.h43 int thrd_create(thrd_t *, thrd_start_t, void *);
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h43 int thrd_create(thrd_t *, thrd_start_t, void *);
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h43 int thrd_create(thrd_t *, thrd_start_t, void *);
/third_party/flutter/glfw/tests/
Dempty.c97 if (thrd_create(&thread, thread_main, NULL) != thrd_success) in main()
Dthreads.c114 if (thrd_create(&threads[i].id, thread_main, threads + i) != in main()

12