Searched refs:pthread_ (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | signal_catcher.cc | 75 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread"); in SignalCatcher() 88 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown"); in ~SignalCatcher() 89 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown"); in ~SignalCatcher()
|
D | signal_catcher.h | 57 pthread_t pthread_ GUARDED_BY(lock_);
|
D | thread_pool.cc | 41 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 46 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker()
|
D | thread_pool.h | 70 pthread_t pthread_; variable
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 212 pthread_(0), in JdwpState() 271 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()), in Create() 365 if (pthread_join(pthread_, &threadReturn) != 0) { in ~JdwpState()
|
D | jdwp.h | 365 pthread_t pthread_; member
|
/art/dex2oat/ |
D | dex2oat.cc | 374 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 387 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog() 445 pthread_t pthread_; member in art::WatchDog
|