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.cc76 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread");
89 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
90 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown");
H A Dthread_pool.cc57 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
62 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown");
69 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority);
H A Dthread_pool.h75 pthread_t pthread_; member in class:art::ThreadPoolWorker
/art/runtime/jdwp/
H A Djdwp_main.cc219 pthread_(0),
279 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()),
373 if (pthread_join(pthread_, &threadReturn) != 0) {
H A Djdwp.h365 pthread_t pthread_; member in struct:art::JDWP::JdwpState
/art/dex2oat/
H A Ddex2oat.cc429 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
439 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason);
512 pthread_t pthread_; member in class:art::WatchDog

Completed in 59 milliseconds