Home
last modified time | relevance | path

Searched refs:mThread (Results 1 – 9 of 9) 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
Dwifi_ext_hal_handler.h111 std::thread mThread; variable
/system/core/libutils/
DThreads.cpp637 mThread(thread_id_t(-1)), in Thread()
673 mThread = thread_id_t(-1); in run()
683 this, name, priority, stack, &mThread); in run()
686 this, name, priority, stack, &mThread); in run()
692 mThread = thread_id_t(-1); in run()
754 self->mThread = thread_id_t(-1); in _threadLoop()
781 if (mThread == getThreadId()) { in requestExitAndWait()
805 if (mThread == getThreadId()) { in join()
833 pthread_t pthread = android_thread_id_t_to_pthread(mThread); in getTid()
DLooper_test.cpp731 mThread = std::thread([this]() { in ThreadedLooperUtil()
741 mThread.join(); in ~ThreadedLooperUtil()
797 std::thread mThread; member in android::ThreadedLooperUtil
/system/chre/host/common/
Dwifi_ext_hal_handler.cc24 mThread.join(); in ~WifiExtHalHandler()
30 mThread = std::thread(&WifiExtHalHandler::wifiExtHandlerThreadEntry, this); in WifiExtHalHandler()
Dst_hal_lpma_handler.cc60 mThread = std::thread(&StHalLpmaHandler::StHalLpmaHandlerThreadEntry, this); in init()
/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()