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

  /art/runtime/
signal_catcher.h 57 pthread_t pthread_ GUARDED_BY(lock_);
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_pool.h 56 pthread_t pthread_; member in class:art::ThreadPoolWorker
thread_pool.cc 37 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
42 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "thread pool worker shutdown");
  /art/runtime/jdwp/
jdwp_main.cc 203 pthread_(0),
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");
359 if (pthread_join(pthread_, &threadReturn) != 0) {
jdwp.h 302 pthread_t pthread_; member in struct:art::JDWP::JdwpState
  /art/dex2oat/
dex2oat.cc 459 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
472 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason);
556 pthread_t pthread_; member in class:art::WatchDog
    [all...]

Completed in 125 milliseconds