Searched refs:mWakeLock (Results 1 – 4 of 4) sorted by relevance
63 private PowerManager.WakeLock mWakeLock; field in ForegroundService113 if (mWakeLock == null) { in onStartCommand()114 mWakeLock = getSystemService(PowerManager.class).newWakeLock( in onStartCommand()116 mWakeLock.acquire(); in onStartCommand()131 if (mWakeLock != null) { in releaseWakeLock()132 mWakeLock.release(); in releaseWakeLock()133 mWakeLock = null; in releaseWakeLock()
244 private PowerManager.WakeLock mWakeLock; field in CalendarWatchFaceService.Engine.LoadMeetingsTask249 mWakeLock = powerManager.newWakeLock( in doInBackground()251 mWakeLock.acquire(); in doInBackground()279 if (mWakeLock != null) { in releaseWakeLock()280 mWakeLock.release(); in releaseWakeLock()281 mWakeLock = null; in releaseWakeLock()
57 private WakeLock mWakeLock; field in AccelerometerPlayActivity75 mWakeLock = mPowerManager.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK, getClass() in onCreate()91 mWakeLock.acquire(); in onResume()109 mWakeLock.release(); in onPause()
144 private WakeLock mWakeLock = null; field in Connectivity584 mWakeLock = mPm.newWakeLock(PowerManager.FULL_WAKE_LOCK, "ConnectivityTest"); in onStartDelayedCycle()585 mWakeLock.acquire(); in onStartDelayedCycle()593 mWakeLock.release(); in onStopDelayedCycle()594 mWakeLock = null; in onStopDelayedCycle()