Home
last modified time | relevance | path

Searched refs:thread_entry (Results 1 – 4 of 4) sorted by relevance

/third_party/libuv/test/
Dbenchmark-thread.c33 static void thread_entry(void* arg) { in thread_entry() function
49 r = uv_thread_create(&tid, thread_entry, (void *) 42); in BENCHMARK_IMPL()
Dtest-thread.c113 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/
Ddpfp.c81 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/
Dos2threads.h73 static void thread_entry(void *arg) in thread_entry() function
89 thread->tid = _beginthread(thread_entry, NULL, 1024 * 1024, thread); in pthread_create()