Searched defs:thread_arg (Results 1 - 13 of 13) sorted by relevance

/external/valgrind/main/drd/tests/
H A Dpth_cond_race.c13 static void* thread_func(void* thread_arg);
59 static void* thread_func(void* thread_arg) argument
H A Dfp_race.c91 static void* thread_func(void* thread_arg) argument
H A Dpth_cond_destroy_busy.c25 static void* thread_func(void* thread_arg) argument
H A Dpth_detached_sem.c45 int thread_arg[count1 > count2 ? count1 : count2]; local
51 thread_arg[i] = i;
65 pthread_create(&thread, &attr, thread_func1, &thread_arg[i]);
74 pthread_create(&thread, &attr, thread_func2, &thread_arg[i]);
H A Dsem_as_mutex.c92 static void* thread_func(void* thread_arg) argument
H A Dsem_open.c106 static void* thread_func(void* thread_arg) argument
H A Dsigalrm.c46 void* thread_func(void* thread_arg) argument
H A Dcircular_buffer.c186 int thread_arg[THREADS]; local
209 thread_arg[i] = i;
211 (void * (*)(void *)) producer, &thread_arg[i]);
216 (void * (*)(void *)) consumer, &thread_arg[i]);
/external/chromium_org/ppapi/tests/
H A Dpp_thread.h46 void* thread_arg);
70 void* thread_arg) {
74 arg_wrapper->user_data = thread_arg;
91 void* thread_arg) {
96 thread_arg);
68 PP_CreateThread(PP_ThreadType* thread, PP_ThreadFunction function, void* thread_arg) argument
89 PP_CreateThread(PP_ThreadType* thread, PP_ThreadFunction function, void* thread_arg) argument
/external/lldb/source/API/
H A DSBHostOS.cpp46 void *thread_arg,
53 log->Printf ("SBHostOS::ThreadCreate (name=\"%s\", thread_function=%p, thread_arg=%p, error_ptr=%p)", name,
54 thread_function, thread_arg, error_ptr);
58 return Host::ThreadCreate (name, thread_function, thread_arg, error_ptr ? error_ptr->get() : NULL);
42 ThreadCreate( const char *name, void *(*thread_function)(void *), void *thread_arg, SBError *error_ptr ) argument
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_linux_test.cc75 pthread_mutex_lock(&thread_arg.terminate_thread_mutex);
76 thread_arg.terminate_thread = true;
77 pthread_cond_broadcast(&thread_arg.terminate_thread_cond);
78 pthread_mutex_unlock(&thread_arg.terminate_thread_mutex);
90 TidReporterArgument thread_arg; member in class:__sanitizer::ThreadListerTest
111 pthread_mutex_lock(&thread_arg.tid_reported_mutex);
112 thread_arg.reported_tid = -1;
115 &thread_arg));
116 while (thread_arg.reported_tid == -1)
117 pthread_cond_wait(&thread_arg
[all...]
/external/qemu/util/
H A Dqemu-thread-win32.c274 void *thread_arg = data->arg; local
281 qemu_thread_exit(start_routine(thread_arg));
/external/lldb/source/Host/common/
H A DHost.cpp555 thread_arg_t thread_arg; member in struct:HostThreadCreateInfo
560 thread_arg (arg)
571 thread_arg_t thread_arg = info->thread_arg; local
578 return thread_fptr (thread_arg);
586 thread_arg_t thread_arg,
593 HostThreadCreateInfo *info_ptr = new HostThreadCreateInfo (thread_name, thread_fptr, thread_arg);
582 ThreadCreate( const char *thread_name, thread_func_t thread_fptr, thread_arg_t thread_arg, Error *error ) argument

Completed in 1113 milliseconds