Searched refs:pthread_ (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | signal_catcher.cc | 80 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread"); in SignalCatcher() 94 (pthread_, SIGQUIT), in ~SignalCatcher() 95 android::base::StringPrintf("signal catcher shutdown: %lu", pthread_)); in ~SignalCatcher() 97 (pthread_, nullptr), in ~SignalCatcher() 98 android::base::StringPrintf("signal catcher shutdown: %lu", pthread_)); in ~SignalCatcher()
|
D | thread_pool.cc | 81 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 86 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker() 104 SetPriorityForTid(pthread_gettid_np(pthread_), priority); in SetPthreadPriority() 112 return getpriority(PRIO_PROCESS, pthread_gettid_np(pthread_)); in GetPthreadPriority()
|
D | signal_catcher.h | 60 pthread_t pthread_ GUARDED_BY(lock_);
|
D | thread_pool.h | 103 pthread_t pthread_; variable
|
/art/dex2oat/ |
D | dex2oat.cc | 315 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 325 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog() 423 pthread_t pthread_; member in art::WatchDog
|