Home
last modified time | relevance | path

Searched refs:fullWakeLock (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/service/src/com/android/car/systeminterface/
DWakeLockInterface.java94 WakeLock fullWakeLock = wakeLockPair.first; in switchToPartialWakeLock() local
100 if (fullWakeLock.isHeld()) { in switchToPartialWakeLock()
101 fullWakeLock.release(); in switchToPartialWakeLock()
115 WakeLock fullWakeLock = wakeLockPair.first; in switchToFullWakeLock() local
117 if (!fullWakeLock.isHeld()) { in switchToFullWakeLock()
120 fullWakeLock.acquire(); in switchToFullWakeLock()
137 WakeLock fullWakeLock = wakeLockPair.first; in releaseAllWakeLocks() local
139 if (fullWakeLock.isHeld()) { in releaseAllWakeLocks()
140 fullWakeLock.release(); in releaseAllWakeLocks()
150 WakeLock fullWakeLock = PowerManagerHelper.newWakeLock(mContext, in createWakeLockPair() local
[all …]
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java954 PowerManager.WakeLock fullWakeLock = powerManager.newWakeLock( in addToNotificationBar() local
957 fullWakeLock.acquire(1000); in addToNotificationBar()