Home
last modified time | relevance | path

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

/device/generic/goldfish/gnss/
DGnssHwConn.cpp156 mThread = std::thread([devFd, threadsFd = std::move(threadsFd), &sink, in GnssHwConn()
167 if (mThread.joinable()) { in ~GnssHwConn()
169 mThread.join(); in ~GnssHwConn()
174 return mThread.joinable(); in ok()
DGnssBatching.cpp69 mThread = std::thread([this, interval, wakeUpOnFifoFull](){ in start()
121 if (mThread.joinable()) { in stopImpl()
131 mThread.join(); in stopImpl()
DGnssMeasurementInterface.cpp129 if (mThread.joinable()) { in closeImpl()
139 mThread.join(); in closeImpl()
173 mThread = std::thread([this, callback, interval](){ in setCallbackImpl()
DGnssHwConn.h48 std::thread mThread; variable
DGnssMeasurementInterface.h54 std::thread mThread; member
DGnssBatching.h52 std::thread mThread; member
/device/generic/goldfish-opengl/system/hwc3/
DVsyncThread.cpp54 mThread = std::thread([this]() { threadLoop(); }); in start()
61 int ret = pthread_setname_np(mThread.native_handle(), name.c_str()); in start()
69 ret = pthread_setschedparam(mThread.native_handle(), SCHED_FIFO, &param); in start()
79 mThread.join(); in stop()
DDrmEventListener.h48 std::thread mThread; variable
DVsyncThread.h65 std::thread mThread; variable
DDrmEventListener.cpp58 mThread = std::thread([this]() { threadLoop(); }); in init()
/device/generic/goldfish/audio/
Dstream_in.cpp81 mThread = std::thread(&ReadThread::threadLoop, this); in ReadThread()
85 if (mThread.joinable()) { in ~ReadThread()
87 mThread.join(); in ~ReadThread()
96 return mThread.joinable(); in isRunning()
218 std::thread mThread; member
Dstream_out.cpp84 mThread = std::thread(&WriteThread::threadLoop, this); in WriteThread()
88 if (mThread.joinable()) { in ~WriteThread()
90 mThread.join(); in ~WriteThread()
99 return mThread.joinable(); in isRunning()
265 std::thread mThread; member in android::hardware::audio::CPP_VERSION::implementation::__anon5160085e0111::WriteThread
/device/google/trout/hal/sensors/2.1/
DSensorThread.cpp26 mThread = std::thread([this]() -> void { in start()
49 mThread.join(); in join()
DSensorThread.h52 std::thread mThread; variable
/device/google/trout/hal/common/agl/watchdog/
Dwatchdog.h35 std::thread mThread; variable
Dwatchdog.cpp26 SystemdWatchdog::SystemdWatchdog() : mThread(std::bind(&SystemdWatchdog::WatchdogThread, this)) {} in SystemdWatchdog()