Searched refs:pthread_ (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Dsignal_catcher.h57 pthread_t pthread_ GUARDED_BY(lock_);
H A Dsignal_catcher.cc70 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");
H A Dthread_pool.cc37 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
42 CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "thread pool worker shutdown");
H A Dthread_pool.h56 pthread_t pthread_; member in class:art::ThreadPoolWorker
/art/runtime/jdwp/
H A Djdwp_main.cc203 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) {
H A Djdwp.h302 pthread_t pthread_; member in struct:art::JDWP::JdwpState
/art/dex2oat/
H A Ddex2oat.cc464 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
477 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason);
561 pthread_t pthread_; member in class:art::WatchDog

Completed in 446 milliseconds