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

  /art/runtime/
java_vm_ext_test.cc 91 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
94 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
103 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
106 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
116 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
117 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, PTHREAD_STACK_MIN), reason);
118 CHECK_PTHREAD_CALL(pthread_create, (&pthread, &attr, attach_current_thread_callback,
120 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
122 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
thread_pool.cc 51 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
52 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
53 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
54 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
58 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown");
signal_catcher.cc 75 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread");
88 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
89 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown");
utils.cc 66 CHECK_PTHREAD_CALL(pthread_threadid_np, (nullptr, &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...]
trace.cc 364 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
405 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
491 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
550 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
    [all...]
thread.cc 643 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
644 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED),
646 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
651 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
711 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self");
    [all...]
profiler.cc 351 CHECK_PTHREAD_CALL(pthread_create, (&profiler_pthread_, nullptr, &RunProfilerThread,
377 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profiler thread shutdown");
thread_list.cc     [all...]
  /art/runtime/base/
mutex-inl.h 38 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
logging.h 154 #define CHECK_PTHREAD_CALL(call, args, what) \
  /art/runtime/openjdkjvm/
OpenjdkJvm.cc 136 CHECK_PTHREAD_CALL(pthread_mutex_init, (mutex, nullptr), "JVM_RawMonitorCreate");
141 CHECK_PTHREAD_CALL(pthread_mutex_destroy,
152 CHECK_PTHREAD_CALL(pthread_mutex_unlock,
  /system/core/base/include/android-base/
logging.h 199 #define CHECK_PTHREAD_CALL(call, args, what) \
  /art/runtime/jit/
profile_saver.cc 430 CHECK_PTHREAD_CALL(
466 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profile saver thread shutdown");
  /art/runtime/jdwp/
jdwp_main.cc 274 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()),
  /art/dex2oat/
dex2oat.cc 393 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
394 #undef CHECK_PTHREAD_CALL
    [all...]

Completed in 2888 milliseconds