Home
last modified time | relevance | path

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

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DSecurityLogMonitor.java114 private Thread mMonitorThread = null; field in SecurityLogMonitor
198 if (mMonitorThread == null) { in start()
213 if (mMonitorThread != null) { in stop()
229 if (mMonitorThread == null && (legacyLogEnabled || auditLogEnabled)) { in setLoggingParams()
231 } else if (mMonitorThread != null && !legacyLogEnabled && !auditLogEnabled) { in setLoggingParams()
254 mMonitorThread = new Thread(this); in startMonitorThreadLocked()
255 mMonitorThread.start(); in startMonitorThreadLocked()
262 mMonitorThread.interrupt(); in stopMonitorThreadLocked()
264 mMonitorThread.join(TimeUnit.SECONDS.toMillis(5)); in stopMonitorThreadLocked()
268 mMonitorThread = null; in stopMonitorThreadLocked()
/frameworks/av/media/utils/
DTimerThread.cpp45 return mMonitorThread.add(std::move(request), std::move(func), timeoutDuration); in scheduleTask()
57 mNoTimeoutMap.remove(handle) : mMonitorThread.remove(handle); in cancelTask()
152 analysis.secondChanceCount = mMonitorThread.getSecondChanceCount(); in getSnapshotAnalysis()
237 mMonitorThread.copyRequests(pendingRequests); in getPendingRequests()
/frameworks/av/media/utils/include/mediautils/
DTimerThread.h390 MonitorThread mMonitorThread{mTimeoutQueue}; // This should be initialized last because