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 | thread_pool.cc | 53 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 58 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker() 65 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority); in SetPthreadPriority()
|
D | signal_catcher.h | 57 pthread_t pthread_ GUARDED_BY(lock_);
|
D | thread_pool.h | 73 pthread_t pthread_; variable
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 215 pthread_(0), in JdwpState() 274 CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()), in Create() 368 if (pthread_join(pthread_, &threadReturn) != 0) { in ~JdwpState()
|
D | jdwp.h | 360 pthread_t pthread_; member
|
/art/dex2oat/ |
D | dex2oat.cc | 400 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 413 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog() 473 pthread_t pthread_; member in art::WatchDog
|