Home
last modified time | relevance | path

Searched refs:mMonitorThread (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DSecurityLogMonitor.java105 private Thread mMonitorThread = null; field in SecurityLogMonitor
153 if (mMonitorThread == null) { in start()
161 mMonitorThread = new Thread(this); in start()
162 mMonitorThread.start(); in start()
174 if (mMonitorThread != null) { in stop()
175 mMonitorThread.interrupt(); in stop()
177 mMonitorThread.join(TimeUnit.SECONDS.toMillis(5)); in stop()
187 mMonitorThread = null; in stop()
/aosp12/system/chre/host/msm/daemon/
H A Dfastrpc_daemon.cc87 mMonitorThread = std::thread(&FastRpcChreDaemon::monitorThreadEntry, this); in init()
106 if (mMonitorThread.has_value()) { in deinit()
107 mMonitorThread->join(); in deinit()
H A Dfastrpc_daemon.h78 std::optional<std::thread> mMonitorThread;