Home | History | Annotate | Download | only in deskclock

Lines Matching refs:PowerManager

20 import android.os.PowerManager;
27 private static PowerManager.WakeLock sCpuWakeLock;
29 public static PowerManager.WakeLock createPartialWakeLock(Context context) {
30 PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
31 return pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, Log.LOGTAG);
47 PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
48 sCpuWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK
49 | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE, Log.LOGTAG);