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 38 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
39 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
40 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
41 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
45 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "thread pool worker shutdown");
signal_catcher.cc 72 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, NULL, &Run, this), "signal catcher thread");
85 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
86 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "signal catcher shutdown");
utils.cc 67 CHECK_PTHREAD_CALL(pthread_threadid_np, (NULL, &owner), __FUNCTION__); // Requires Mac OS 10.6
101 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__);
102 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
103 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
106 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__);
107 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__);
108 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
109 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
    [all...]
thread.cc 321 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
322 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_DETACHED");
323 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
325 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
365 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self");
540 CHECK_PTHREAD_CALL(pthread_attr_init, (&default_attributes), "default stack size query");
541 CHECK_PTHREAD_CALL(pthread_attr_getstacksize, (&default_attributes, &default_stack_size),
543 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&default_attributes), "default stack size query");
818 CHECK_PTHREAD_CALL(pthread_getschedparam, (thread->tlsPtr_.pthread_self, &policy, &sp),
    [all...]
profiler.cc 350 CHECK_PTHREAD_CALL(pthread_create, (&profiler_pthread_, nullptr, &RunProfilerThread,
376 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profiler thread shutdown");
trace.cc 379 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, NULL, &RunSamplingThread,
449 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, NULL), "sampling thread shutdown");
thread_list.cc     [all...]
  /art/runtime/base/
mutex-inl.h 34 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
logging.h 60 #define CHECK_PTHREAD_CALL(call, args, what) \
  /art/runtime/jdwp/
jdwp_main.cc 263 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()),
  /art/compiler/driver/
compiler_driver.cc 379 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, nullptr), "compiler tls key");
442 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key");
451 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls");
    [all...]
  /art/dex2oat/
dex2oat.cc 620 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
621 #undef CHECK_PTHREAD_CALL
    [all...]

Completed in 277 milliseconds