/external/valgrind/drd/tests/ |
H A D | pth_cond_race.c | 13 static void* thread_func(void* thread_arg); 59 static void* thread_func(void* thread_arg) argument
|
H A D | fp_race.c | 91 static void* thread_func(void* thread_arg) argument
|
H A D | pth_cond_destroy_busy.c | 25 static void* thread_func(void* thread_arg) argument
|
H A D | pth_detached_sem.c | 45 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 D | sem_as_mutex.c | 92 static void* thread_func(void* thread_arg) argument
|
H A D | sem_open.c | 106 static void* thread_func(void* thread_arg) argument
|
H A D | sigalrm.c | 46 void* thread_func(void* thread_arg) argument
|
H A D | circular_buffer.c | 186 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/elfutils/tests/ |
H A D | dwfl-proc-attach.c | 64 thread_callback (Dwfl_Thread *thread, void *thread_arg) argument 66 int *threads = (int *) thread_arg;
|
H A D | backtrace-dwarf.c | 118 thread_callback (Dwfl_Thread *thread, void *thread_arg) argument
|
/external/lldb/source/API/ |
H A D | SBHostOS.cpp | 46 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 D | sanitizer_linux_test.cc | 75 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/elfutils/libdwfl/ |
H A D | linux-core-attach.c | 47 struct thread_arg struct 110 struct thread_arg *thread_arg; local 114 thread_arg = malloc (sizeof (*thread_arg)); 115 if (thread_arg == NULL) 120 thread_arg->core_arg = core_arg; 121 *thread_argp = thread_arg; 124 thread_arg = (struct thread_arg *) *thread_arg 169 struct thread_arg *thread_arg = thread_arg_voidp; local [all...] |
H A D | linux-pid-attach.c | 235 pid_set_initial_registers (Dwfl_Thread *thread, void *thread_arg) argument 237 struct __libdwfl_pid_arg *pid_arg = thread_arg; 274 pid_thread_detach (Dwfl_Thread *thread, void *thread_arg) argument 276 struct __libdwfl_pid_arg *pid_arg = thread_arg; 453 void *thread_arg __attribute__ ((unused))) 475 void *thread_arg __attribute__ ((unused)))
|
/external/elfutils/src/ |
H A D | stack.c | 452 thread_callback (Dwfl_Thread *thread, void *thread_arg) argument 454 struct frames *frames = (struct frames *) thread_arg; 458 switch (dwfl_thread_getframes (thread, frame_callback, thread_arg))
|
/external/google-breakpad/src/client/linux/handler/ |
H A D | exception_handler.cc | 398 const ThreadArgument *thread_arg = reinterpret_cast<ThreadArgument*>(arg); local 402 thread_arg->handler->WaitForContinueSignal(); 404 return thread_arg->handler->DoDump(thread_arg->pid, thread_arg->context, 405 thread_arg->context_size) == false; 482 ThreadArgument thread_arg; local 483 thread_arg.handler = this; 484 thread_arg.minidump_descriptor = &minidump_descriptor_; 485 thread_arg [all...] |
/external/lldb/source/Host/common/ |
H A D | Host.cpp | 555 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
|