Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/systeminterface/
DWakeLockInterface.java33 private final WakeLock mPartialWakeLock; field in WakeLockInterface.DefaultImpl
41 mPartialWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, in DefaultImpl()
47 if (!mPartialWakeLock.isHeld()) { in switchToPartialWakeLock()
48 mPartialWakeLock.acquire(); in switchToPartialWakeLock()
60 if (mPartialWakeLock.isHeld()) { in switchToFullWakeLock()
61 mPartialWakeLock.release(); in switchToFullWakeLock()
67 if (mPartialWakeLock.isHeld()) { in releaseAllWakeLocks()
68 mPartialWakeLock.release(); in releaseAllWakeLocks()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppObexServerSession.java99 private WakeLock mPartialWakeLock; field in BluetoothOppObexServerSession
113 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG); in BluetoothOppObexServerSession()
114 mPartialWakeLock.setReferenceCounted(false); in BluetoothOppObexServerSession()
300 mPartialWakeLock.acquire(); in onPut()
626 if (mPartialWakeLock.isHeld()) { in releaseWakeLocks()
627 mPartialWakeLock.release(); in releaseWakeLocks()
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoramaActivity.java157 private PowerManager.WakeLock mPartialWakeLock; field in PanoramaActivity
284 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Panorama"); in onCreate()
839 mPartialWakeLock.acquire(); in saveHighResMosaic()
844 mPartialWakeLock.release(); in saveHighResMosaic()
/packages/services/Telephony/src/com/android/phone/
DPhoneGlobals.java167 private PowerManager.WakeLock mPartialWakeLock; field in PhoneGlobals
321 mPartialWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK in onCreate()