Home
last modified time | relevance | path

Searched refs:threadfunc (Results 1 – 12 of 12) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_create.c33 void *threadfunc(void *arg) in threadfunc() function
60 int32_t ret = pthread_create(&ph, NULL, threadfunc, (char *)(URL)); in pthread_create_0200()
76 int32_t ret = pthread_create(&ph, &atrr, threadfunc, (char *)(URL)); in pthread_create_0300()
104 ret = pthread_create(&ph, &attr, threadfunc, (char *)(URL)); in pthread_create_0400()
122 int32_t ret = pthread_create(&ph, &attr, threadfunc, (char *)(URL)); in pthread_create_0500()
Dthrd_create.c29 int threadfunc(void *arg) in threadfunc() function
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()
Dthrd_detach.c28 int threadfunc(void *arg) in threadfunc() function
49 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0100()
77 result = thrd_create(&id, threadfunc, NULL); in thrd_detach_0200()
Dthrd_join.c31 int threadfunc(void *arg) in threadfunc() function
46 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0100()
77 result = thrd_create(&id, threadfunc, NULL); in thrd_join_0200()
Dpthread_self.c22 void *threadfunc(void *arg) in threadfunc() function
38 pthread_create(&tid1, NULL, threadfunc, NULL); in pthread_self_0100()
Dpthread_detach.c23 void *threadfunc(void *arg) in threadfunc() function
40 pthread_create(&pid, NULL, threadfunc, NULL); in pthread_detach_0100()
Dpthread_join.c23 void *threadfunc(void *arg) in threadfunc() function
39 pthread_create(&pid, NULL, threadfunc, NULL); in pthread_join_0100()
Dpthread_barrier_wait.c26 static void threadfunc(void) in threadfunc() function
49 if (pthread_create(&ids[i], NULL, (void *)threadfunc, NULL) != 0) { in pthread_barrier_wait_0100()
Dthrd_sleep.c30 int threadfunc(void *arg) in threadfunc() function
53 result = thrd_create(&id, threadfunc, (void *)(&ts)); in thrd_sleep_0100()
/third_party/musl/libc-test/src/functional/
Dpthread_getname_np.c15 static void *threadfunc(void *parm) in threadfunc() function
36 rc = pthread_create(&thread, NULL, threadfunc, NULL); in main()
/third_party/astc-encoder/Source/
Dastcenccli_platform_dependents.cpp55 void* (*threadfunc)(void*), in pthread_create()
59 LPTHREAD_START_ROUTINE func = reinterpret_cast<LPTHREAD_START_ROUTINE>(threadfunc); in pthread_create()
/third_party/libdrm/tests/exynos/
Dexynos_fimg2d_event.c76 static void* threadfunc(void *arg) { in threadfunc() function
311 pthread_create(&event_thread, NULL, threadfunc, &event_data); in main()