Searched refs:thread_entry (Results 1 – 4 of 4) sorted by relevance
/third_party/libuv/test/ |
D | benchmark-thread.c | 33 static void thread_entry(void* arg) { in thread_entry() function 49 r = uv_thread_create(&tid, thread_entry, (void *) 42); in BENCHMARK_IMPL()
|
D | test-thread.c | 113 static void thread_entry(void* arg) { in thread_entry() function 123 r = uv_thread_create(&tid, thread_entry, (void *) 42); in TEST_IMPL()
|
/third_party/libusb/examples/ |
D | dpfp.c | 81 void *(*thread_entry)(void *arg), void *arg) in thread_create() 83 return pthread_create(thread, NULL, thread_entry, arg) == 0 ? 0 : -1; in thread_create() 123 thread_return_t (__stdcall *thread_entry)(void *arg), void *arg) in thread_create() 126 *thread = CreateThread(NULL, 0, thread_entry, arg, 0, NULL); in thread_create() 128 *thread = (HANDLE)_beginthreadex(NULL, 0, thread_entry, arg, 0, NULL); in thread_create()
|
/third_party/ffmpeg/compat/ |
D | os2threads.h | 73 static void thread_entry(void *arg) in thread_entry() function 89 thread->tid = _beginthread(thread_entry, NULL, 1024 * 1024, thread); in pthread_create()
|