Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/systeminterface/
DWakeLockInterface.java76 Pair<WakeLock, WakeLock> wakeLockPair = createWakeLockPair(displayId); in DefaultImpl() local
78 mPerDisplayWakeLocks.put(displayId, wakeLockPair); in DefaultImpl()
85 Pair<WakeLock, WakeLock> wakeLockPair; in switchToPartialWakeLock() local
87 wakeLockPair = mPerDisplayWakeLocks.get(displayId); in switchToPartialWakeLock()
89 if (wakeLockPair == null) { in switchToPartialWakeLock()
93 WakeLock partialWakeLock = wakeLockPair.second; in switchToPartialWakeLock()
94 WakeLock fullWakeLock = wakeLockPair.first; in switchToPartialWakeLock()
107 Pair<WakeLock, WakeLock> wakeLockPair; in switchToFullWakeLock() local
109 wakeLockPair = mPerDisplayWakeLocks.get(displayId); in switchToFullWakeLock()
111 if (wakeLockPair == null) { in switchToFullWakeLock()
[all …]