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 318 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
319 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_DETACHED");
320 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
322 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
362 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self");
528 CHECK_PTHREAD_CALL(pthread_attr_init, (&default_attributes), "default stack size query");
529 CHECK_PTHREAD_CALL(pthread_attr_getstacksize, (&default_attributes, &default_stack_size),
531 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&default_attributes), "default stack size query");
806 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,
440 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, NULL), "sampling thread shutdown");
thread_list.cc 868 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
    [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 368 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 588 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
589 #undef CHECK_PTHREAD_CALL
    [all...]

Completed in 1014 milliseconds