Home
last modified time | relevance | path

Searched refs:mThread (Results 1 – 6 of 6) sorted by relevance

/system/chre/host/common/include/chre_host/
Dst_hal_lpma_handler.h76 if (mThread.has_value()) { in ~StHalLpmaHandler()
78 mThread->detach(); in ~StHalLpmaHandler()
127 std::optional<std::thread> mThread; variable
/system/core/libutils/
DThreads.cpp657 mThread(thread_id_t(-1)), in Thread()
693 mThread = thread_id_t(-1); in run()
703 this, name, priority, stack, &mThread); in run()
706 this, name, priority, stack, &mThread); in run()
712 mThread = thread_id_t(-1); in run()
774 self->mThread = thread_id_t(-1); in _threadLoop()
801 if (mThread == getThreadId()) { in requestExitAndWait()
825 if (mThread == getThreadId()) { in join()
853 pthread_t pthread = android_thread_id_t_to_pthread(mThread); in getTid()
/system/core/libutils/include/utils/
DThread.h99 thread_id_t mThread; variable
/system/core/libsysutils/include/sysutils/
DSocketListener.h33 pthread_t mThread; variable
/system/core/libsysutils/src/
DSocketListener.cpp103 if (pthread_create(&mThread, nullptr, SocketListener::threadStart, this)) { in startListener()
122 if (pthread_join(mThread, &ret)) { in stopListener()
/system/chre/host/common/
Dst_hal_lpma_handler.cc60 mThread = std::thread(&StHalLpmaHandler::StHalLpmaHandlerThreadEntry, this); in init()