/art/runtime/ |
D | thread_pool.cc | 38 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason); in ThreadPoolWorker() 39 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason); in ThreadPoolWorker() 40 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 41 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason); in ThreadPoolWorker() 45 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "thread pool worker shutdown"); in ~ThreadPoolWorker()
|
D | signal_catcher.cc | 72 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread"); in SignalCatcher() 85 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown"); in ~SignalCatcher() 86 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "signal catcher shutdown"); in ~SignalCatcher()
|
D | utils.cc | 67 CHECK_PTHREAD_CALL(pthread_threadid_np, (NULL, &owner), __FUNCTION__); // Requires Mac OS 10.6 in GetTid() 101 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__); in GetThreadStack() 102 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack() 103 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack() 106 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__); in GetThreadStack() 107 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__); in GetThreadStack() 108 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack() 109 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()
|
D | thread.cc | 321 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread"); in CreateNativeThread() 322 …CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_… in CreateNativeThread() 323 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size); in CreateNativeThread() 325 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread"); in CreateNativeThread() 365 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self"); in Init() 540 CHECK_PTHREAD_CALL(pthread_attr_init, (&default_attributes), "default stack size query"); in InitStackHwm() 541 CHECK_PTHREAD_CALL(pthread_attr_getstacksize, (&default_attributes, &default_stack_size), in InitStackHwm() 543 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&default_attributes), "default stack size query"); in InitStackHwm() 818 CHECK_PTHREAD_CALL(pthread_getschedparam, (thread->tlsPtr_.pthread_self, &policy, &sp), in DumpState() 1054 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); in ThreadExitCallback() [all …]
|
D | trace.cc | 379 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, NULL, &RunSamplingThread, in Start() 449 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, NULL), "sampling thread shutdown"); in Stop()
|
D | profiler.cc | 350 CHECK_PTHREAD_CALL(pthread_create, (&profiler_pthread_, nullptr, &RunProfilerThread, in Start() 376 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profiler thread shutdown"); in Stop()
|
D | thread_list.cc | 925 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self"); in Unregister()
|
/art/runtime/base/ |
D | mutex-inl.h | 34 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
|
D | logging.h | 60 #define CHECK_PTHREAD_CALL(call, args, what) \ macro
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 263 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()), in Create()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 379 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, nullptr), "compiler tls key"); in CompilerDriver() 442 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key"); in ~CompilerDriver() 451 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls"); in GetTls()
|
/art/dex2oat/ |
D | dex2oat.cc | 621 #undef CHECK_PTHREAD_CALL
|