HomeSort by relevance Sort by last modified time
    Searched refs:sCpuWakeLock (Results 1 - 2 of 2) sorted by null

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertWakeLock.java 27 private static PowerManager.WakeLock sCpuWakeLock;
32 if (sCpuWakeLock != null) {
39 sCpuWakeLock = pm.newWakeLock(
43 sCpuWakeLock.acquire();
47 if (sCpuWakeLock != null) {
48 sCpuWakeLock.release();
49 sCpuWakeLock = null;
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertWakeLock.java 28 private static PowerManager.WakeLock sCpuWakeLock;
37 if (sCpuWakeLock != null) {
41 sCpuWakeLock = createPartialWakeLock(context);
42 sCpuWakeLock.acquire();
46 if (sCpuWakeLock != null) {
47 sCpuWakeLock.release();
48 sCpuWakeLock = null;

Completed in 141 milliseconds