Searched refs:CHECK_PTHREAD_CALL (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Dthread_pool.cc35 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
36 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), reason);
37 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
38 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
42 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "thread pool worker shutdown");
H A Dsignal_catcher.cc70 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread");
83 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
84 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "signal catcher shutdown");
H A Dthread.cc262 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
263 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_DETACHED");
264 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
266 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
305 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self");
447 CHECK_PTHREAD_CALL(pthread_attr_init, (&default_attributes), "default stack size query");
448 CHECK_PTHREAD_CALL(pthread_attr_getstacksize, (&default_attributes, &default_stack_size),
450 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&default_attributes), "default stack size query");
742 CHECK_PTHREAD_CALL(pthread_getschedparam, (thread->pthread_self_, &policy, &sp), __FUNCTION__);
900 CHECK_PTHREAD_CALL(pthread_setspecifi
[all...]
H A Dutils.cc64 CHECK_PTHREAD_CALL(pthread_threadid_np, (NULL, &owner), __FUNCTION__); // Requires Mac OS 10.6
97 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__);
98 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, &stack_base, &stack_size), __FUNCTION__);
99 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
H A Dtrace.cc378 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, NULL, &RunSamplingThread,
425 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, NULL), "sampling thread shutdown");
H A Dthread_list.cc551 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
/art/runtime/base/
H A Dmutex-inl.h31 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
H A Dlogging.h58 #define CHECK_PTHREAD_CALL(call, args, what) \ macro
H A Dmutex.cc492 CHECK_PTHREAD_CALL(pthread_threadid_np, (owner, &tid), __FUNCTION__); // Requires Mac OS 10.6
736 CHECK_PTHREAD_CALL(pthread_threadid_np, (owner, &tid), __FUNCTION__); // Requires Mac OS 10.6
/art/runtime/jdwp/
H A Djdwp_main.cc258 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, NULL, StartJdwpThread, state.get()), "JDWP thread");
276 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, NULL, StartJdwpThread, state.get()), "JDWP thread");
/art/compiler/driver/
H A Dcompiler_driver.cc360 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, NULL), "compiler tls key");
431 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key");
449 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls");
/art/dex2oat/
H A Ddex2oat.cc439 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
440 #undef CHECK_PTHREAD_CALL macro

Completed in 151 milliseconds