HomeSort by relevance Sort by last modified time
    Searched refs:CHECK_PTHREAD_CALL (Results 1 - 12 of 12) sorted by null

  /art/runtime/
thread_pool.cc 35 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");
signal_catcher.cc 70 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");
thread.cc 262 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__);
    [all...]
utils.cc 64 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__);
    [all...]
trace.cc 378 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, NULL, &RunSamplingThread,
425 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, NULL), "sampling thread shutdown");
thread_list.cc 551 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
  /art/runtime/base/
mutex-inl.h 31 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
logging.h 58 #define CHECK_PTHREAD_CALL(call, args, what) \
mutex.cc 492 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/
jdwp_main.cc 258 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/
compiler_driver.cc 360 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");
    [all...]
  /art/dex2oat/
dex2oat.cc 439 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
440 #undef CHECK_PTHREAD_CALL
    [all...]

Completed in 408 milliseconds