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 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");
thread_pool.h 70 pthread_t pthread_; member in class:art::ThreadPoolWorker
thread_pool.cc 41 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
46 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown");
  /art/runtime/jdwp/
jdwp_main.cc 212 pthread_(0),
271 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()),
365 if (pthread_join(pthread_, &threadReturn) != 0) {
jdwp.h 365 pthread_t pthread_; member in struct:art::JDWP::JdwpState
  /art/dex2oat/
dex2oat.cc 374 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
387 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason);
445 pthread_t pthread_; member in class:art::WatchDog
    [all...]

Completed in 93 milliseconds