OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sCpuWakeLock
(Results
1 - 2
of
2
) sorted by null
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertWakeLock.java
30
private static PowerManager.WakeLock
sCpuWakeLock
;
35
if (
sCpuWakeLock
!= null) {
39
sCpuWakeLock
= pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK
41
sCpuWakeLock
.acquire();
46
if (
sCpuWakeLock
!= null) {
47
sCpuWakeLock
.release();
48
sCpuWakeLock
= null;
/packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertWakeLock.java
29
private static PowerManager.WakeLock
sCpuWakeLock
;
37
if (
sCpuWakeLock
!= null) {
41
sCpuWakeLock
= createPartialWakeLock(context);
42
sCpuWakeLock
.acquire();
46
if (
sCpuWakeLock
!= null) {
50
sCpuWakeLock
= pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK
52
sCpuWakeLock
.acquire();
56
if (
sCpuWakeLock
!= null) {
57
sCpuWakeLock
.release();
58
sCpuWakeLock
= null
[
all
...]
Completed in 279 milliseconds