Home
last modified time | relevance | path

Searched refs:pthread_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dsignal_catcher.cc79 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread"); in SignalCatcher()
92 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown"); in ~SignalCatcher()
93 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown"); in ~SignalCatcher()
Dthread_pool.cc80 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker()
85 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker()
92 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority); in SetPthreadPriority()
103 return getpriority(PRIO_PROCESS, pthread_gettid_np(pthread_)); in GetPthreadPriority()
Dsignal_catcher.h56 pthread_t pthread_ GUARDED_BY(lock_);
Dthread_pool.h102 pthread_t pthread_; variable
/art/dex2oat/
Ddex2oat.cc309 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog()
319 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog()
417 pthread_t pthread_; member in art::WatchDog