Dumpsys Alarm查看應用程序喚醒命令


Dumpsys alarm查看應用程序喚醒命令:

    在安卓adb root進如命令行后(沒有root或者root群組的權限執行不了該命令),

1.

<span style="font-size:18px;">Pending alarm batches: 48</span> 

當應用設置ALARM的時候,系統不會將這些ALARM在設置的准確時間內觸發,而將用一種批量觸發(batches mode)的策略,這樣可以最小化地使系統從休眠狀態醒來,最低程度地減少電池的消耗,即將一批觸發時間接近的鬧鍾,壓縮到某一個時間段內一起觸發,而不是一個個觸發,這樣系統會很難休眠。

上面的字段則表示,有48個ALARM將被觸發,dumpsys alarm 輸出后,就是現實每一個鬧鍾的觸發詳情,如:

<span style="font-size:18px;">4293d3a8: 批處理模式下的內部ID號

num = 1:表示在該batch中,只有一個鬧鍾

start和end后的時間,表示自系統啟動后,流逝的時間,該段時間粗略的表示,該鬧鍾會在start和end之間的時間觸發</span>

 

RTC #0: Alarm{4293d358 type 1 com.android.chrome}

type=1 whenElapsed=1369361 when=+19s304ms window=-1 repeatInterval=0 count=0

operation=PendingIntent{429e4500: PendingIntentRecord{429dbbc8 com.android.chrome broadcastIntent}}

對於每一個alrm,都會有如上所示的三行解說

RTC:表示ALARM的類型,一般有:RTC_WAKEUP, RTC, ELAPSED_WAKEUP, or ELAPSED每個類型代表的意思就不贅述了,有興趣的 可以自己查閱資料

#0:表示在該批量模式中,該ALARM的標號,取值0~n-1,n為該batch中alarm個數

4293d358 :鬧鍾的內部編號

com.android.chrome:設置該鬧鍾的應用包名

type=1:鬧鍾的類型,即第一條中提到的幾個鬧鍾類型

whenElapsed=1369361:該鬧鍾會在系統開機后,大概1369361后觸發,這是大概時間

when=+19s304ms:該鬧鍾會在執行完這條dumpsys alarm命令后,19秒304ms后觸發

window=:根據該alarm被調度的不同方法,設置不同的值,如果該alarm是 setExact()或setAlarmClock()方法調用的,該值為 AlarmManager.WINDOW_EXACT(=0),如果是 setInexactRepeating(),則賦值為AlarmManager.WINDOW_HEURISTIC(=- 1),然而A PI的level不同該值也不同,API小於19(KITKAT)的是WINDOW_EXACT,大於19的是WINDOW_HEURISTIC

repeatInterval=900000:改鬧鍾的重復頻率,900000ms后重復,0表示不重復

count=:表示該alarm因為某些原因而被忽略了的次數,0表示沒有被忽略過

operation=PendingIntent{...}:與pendingIntent相關,該intent被實例化后,可以發送廣播,啟動服務,或者啟動Activity, 說白了就是喚醒應用的操作。

Broadcast Ref Count: 0

為了使得系統在醒來后,發送必要的廣播幀,並且保證在所有的廣播幀沒有發送出去之前,系統不要進入睡眠狀態,內部定義了一個變量:mBroadcastRefCount ,它的初始值是0,並且當需要發送的廣播在隊列配對的時候,該變量的值就會遞增,發送一個廣播后則遞減,當減到0的時候,就會釋放它持有的wakelock,而讓系統進入休眠狀態。

所以,Broadcast Ref Count: 0 表示在運行dumpsys alarm的時刻,該時刻並沒有廣播要發送。

top alarms:

根據應用的喚醒系統的時間排行,取最長時間的前十名,然后按照降序列出,有助於找出第三方app因為編程不規范,而導致極度耗電

 

Alarm Stats

列出所有系統中應用設置alarm的情況,可以排查設置的鬧鍾是否起作用了

格式如下:

com.example.someapp +1s857ms running, 0 wakeups:

+1s817ms 0 wakes 83 alarms: cmp={com.example.someapp/com.example.someapp.someservice}

+40ms 0 wakes 1 alarms: cmp={com.example.someapp/com.example.someapp.someotherservice}

com.example.someap:設置alarm的應用包名

+1s857ms running:系統總體被該應用所有的alarm消耗的時間

0 wakeups:設備被鬧鍾喚醒的次數

接下來是每個alarm的情況:

+1s817ms:該alarm消耗的時間

0 wakes:設備被喚醒的次數

83 alarms:alarm被觸發的次數,重復鬧鍾,該值大於1

cmp={...}:alarm被觸發,則啟動該服務,服務實例位置在{}中聲明

如果觸發的是廣播,則格式如:

android +4m51s566ms running, 281 wakeups:

+2m46s583ms 0 wakes 1224 alarms: act=android.intent.action.TIME_TICK

+1m25s624ms 89 wakes 89 alarms: act=android.content.syncmanager.SYNC_ALARM

+52s898ms 0 wakes 41 alarms: act=com.android.server.action.NETWORK_STATS_POLL

...

act=...:發送廣播的名稱

注意:-wakes 是指后面的alarm的次數中有多少次是將設備從休眠中喚醒的

 

 

Microsoft Windows [版本 6.1.7601]

版權所有 (c) 2009 Microsoft Corporation。保留所有權利。

 

C:\Users\wangbaoqun1>d:

 

D:\>cd adb

 

D:\ADB>adb shell

* daemon not running. starting it now on port 5037 *

* daemon started successfully *

HS8937QC:/ $ dumpsys alarm

dumpsys alarm

Current Alarm Manager state:

Settings:

min_futurity=+5s0ms

min_interval=+1m0s0ms

listener_timeout=+5s0ms

allow_while_idle_short_time=+5s0ms

allow_while_idle_long_time=+9m0s0ms

allow_while_idle_whitelist_duration=+10s0ms

 

nowRTC=1483279792773=2017-01-01 22:09:52 nowELAPSED=782053

mLastTimeChangeClockTime=1483279201060=2017-01-01 22:00:01

mLastTimeChangeRealtime=+3m10s339ms

Time since non-interactive: +19s736ms

Max wakeup delay: +2m0s0ms

Time since last dispatch: +33s262ms

Next non-wakeup delivery time: -21m55s934ms

Next non-wakeup alarm: +7s226ms = 2017-01-01 22:09:59

Next wakeup: +29s767ms = 2017-01-01 22:10:22

Last wakeup: -33s262ms set at -30s232ms

Num time change events: 1

mDeviceIdleUserWhitelist=[]

 

Next alarm clock information:

 

Pending alarm batches: 15

Batch{dbb22e2 num=1 start=789279 end=789279 flgs=0x1}:

ELAPSED #0: Alarm{a1ae673 type 3 when 789279 android}

tag=*alarm*:android.intent.action.TIME_TICK

type=3 whenElapsed=+7s226ms when=+7s226ms

window=0 repeatInterval=0 count=0 flags=0x1

operation=PendingIntent{f9d5930: PendingIntentRecord{24bc9a9 android broadcastIntent}}

Batch{36c8b2e num=1 start=811820 end=811820 flgs=0x1}:

ELAPSED_WAKEUP #0: Alarm{b3376cf type 2 when 811820 com.cleanmaster.mguard}

tag=*walarm*:com.cmcm.chargemaster.action.START_DETECTING_UNSTABLE_PLUG

type=2 whenElapsed=+29s767ms when=+29s767ms

window=0 repeatInterval=0 count=0 flags=0x1

operation=PendingIntent{636d85c: PendingIntentRecord{e6e5765 com.cleanmaster.mguard broadcastIntent}}

Batch{ba2c3a num=11 start=941210 end=1055391}:

ELAPSED_WAKEUP #10: Alarm{79ab0eb type 2 when 941210 android}

tag=*walarm*:*job.deadline*

type=2 whenElapsed=+2m39s157ms when=+2m39s157ms

window=+10m39s186ms repeatInterval=0 count=0 flags=0x0

operation=null

listener=android.app.AlarmManager$ListenerWrapper@f871e48

ELAPSED #9: Alarm{b7204e1 type 3 when 808579 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.screensave.intent.action.REPORT_INFOC_CMC_AVOID

type=3 whenElapsed=+26s526ms when=+26s526ms

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{40ed206: PendingIntentRecord{4f170c7 com.cleanmaster.mguard broadcastIntent}}

RTC #8: Alarm{c13d6f4 type 1 when 1483279779410 com.cleanmaster.mguard}

tag=*alarm*:com.ijinshan.common.kinfoc.ActivityTimer

type=1 whenElapsed=-13s363ms when=2017-01-01 22:09:39

window=+2h34m45s0ms repeatInterval=12380000 count=0 flags=0x0

operation=PendingIntent{4a90e1d: PendingIntentRecord{5b60892 com.cleanmaster.mguard broadcastIntent}}

ELAPSED #7: Alarm{80a5263 type 3 when 0 com.cleanmaster.mguard}

tag=*alarm*:android.scenemonitor.ap_hotspot_workeralarm

type=3 whenElapsed=-18s192ms when=--

window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0

operation=PendingIntent{d116e60: PendingIntentRecord{e4d6f19 com.cleanmaster.mguard broadcastIntent}}

RTC_WAKEUP #6: Alarm{5281bde type 0 when 1483279764491 com.cleanmaster.mguard}

tag=*walarm*:com.cleanmaster.service.ACTION_UPDATE_CLOUD_CFG

type=0 whenElapsed=-28s282ms when=2017-01-01 22:09:24

window=+4h30m0s0ms repeatInterval=21600000 count=0 flags=0x0

operation=PendingIntent{645b1bf: PendingIntentRecord{8f108c com.cleanmaster.mguard startService}}

RTC #5: Alarm{c3ce3d5 type 1 when 1483279762461 com.cleanmaster.mguard}

tag=*alarm*:com.ijinshan.cleanmaster_check_apk_update

type=1 whenElapsed=-30s312ms when=2017-01-01 22:09:22

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{f1617ea: PendingIntentRecord{adaadb com.cleanmaster.mguard broadcastIntent}}

ELAPSED #4: Alarm{462a978 type 3 when 748928 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.NotificationDisturbAlarm

type=3 whenElapsed=-33s125ms when=-33s125ms

window=+4h30m0s0ms repeatInterval=21600000 count=0 flags=0x0

operation=PendingIntent{874e851: PendingIntentRecord{835c8b6 com.cleanmaster.mguard broadcastIntent}}

ELAPSED #3: Alarm{4d219b7 type 3 when 748850 com.cleanmaster.mguard}

tag=*alarm*:android.scenetrigger.workeralarm

type=3 whenElapsed=-33s203ms when=-33s203ms

window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x0

operation=PendingIntent{bd4e524: PendingIntentRecord{54eb88d com.cleanmaster.mguard broadcastIntent}}

ELAPSED_WAKEUP #2: Alarm{8cdba42 type 2 when 641210 android}

tag=*walarm*:*job.delay*

type=2 whenElapsed=-2m20s843ms when=-2m20s843ms

window=+6m54s181ms repeatInterval=0 count=0 flags=0x0

operation=null

listener=android.app.AlarmManager$ListenerWrapper@f649a53

RTC #1: Alarm{40d2f90 type 1 when 1483279200000 com.emoji.keyboard.touchpal}

tag=*alarm*:com.cootek.usage.alarm_operation

type=1 whenElapsed=-9m52s773ms when=2017-01-01 22:00:00

window=+45m0s0ms repeatInterval=3600000 count=0 flags=0x0

operation=PendingIntent{77b5089: PendingIntentRecord{501388e com.emoji.keyboard.touchpal broadcastIntent}}

RTC #0: Alarm{c9488af type 1 when 1483279200000 com.emoji.keyboard.touchpal}

tag=*alarm*:com.cootek.presentation.action.CONFIG_UPDATE

type=1 whenElapsed=-9m52s774ms when=2017-01-01 22:00:00

window=+45m0s0ms repeatInterval=3600000 count=0 flags=0x0

operation=PendingIntent{33db4bc: PendingIntentRecord{3bf6c45 com.emoji.keyboard.touchpal broadcastIntent}}

Batch{ddc4f9a num=1 start=1090280 end=1090280 flgs=0x1}:

RTC #0: Alarm{22b00cb type 1 when 1483280101000 com.android.deskclock}

tag=*alarm*:com.android.deskclock.ON_QUARTER_HOUR

type=1 whenElapsed=+5m8s227ms when=2017-01-01 22:15:01

window=0 repeatInterval=0 count=0 flags=0x1

operation=PendingIntent{e8f60a8: PendingIntentRecord{c6f87c1 com.android.deskclock broadcastIntent}}

Batch{71fcb66 num=1 start=1090280 end=1090280 flgs=0x1}:

RTC #0: Alarm{f66dea7 type 1 when 1483280101000 com.android.deskclock}

tag=*alarm*:com.android.deskclock.ON_QUARTER_HOUR

type=1 whenElapsed=+5m8s227ms when=2017-01-01 22:15:01

window=0 repeatInterval=0 count=0 flags=0x1

operation=PendingIntent{2cddf54: PendingIntentRecord{aabdefd com.android.deskclock broadcastIntent}}

Batch{dcd37f2 num=1 start=1362315 end=1362315 flgs=0x5}:

RTC_WAKEUP #0: Alarm{e98be43 type 0 when 1483280373035 com.android.systemui}

tag=*walarm*:screen_off_app_clear

type=0 whenElapsed=+9m40s262ms when=2017-01-01 22:19:33

window=0 repeatInterval=0 count=0 flags=0x5

operation=PendingIntent{bd39cc0: PendingIntentRecord{f5c6df9 com.android.systemui startService}}

Batch{b72e13e num=1 start=1368880 end=1818880}:

ELAPSED #0: Alarm{47efb9f type 3 when 1368880 com.cleanmaster.mguard}

tag=*alarm*:android.scenemonitor.badchargingworkeralarm

type=3 whenElapsed=+9m46s827ms when=+9m46s827ms

window=+7m30s0ms repeatInterval=0 count=0 flags=0x0

operation=PendingIntent{6b5c4ec: PendingIntentRecord{7ecf0b5 com.cleanmaster.mguard broadcastIntent}}

Batch{237d34a num=4 start=2562461 end=3169687 flgs=0x8}:

RTC #3: Alarm{961b2bb type 1 when 1483281573181 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.service.ALARM_START_BG_SCAN_MEDIASTORE

type=1 whenElapsed=+29m40s408ms when=2017-01-01 22:39:33

window=+22m29s999ms repeatInterval=0 count=0 flags=0x0

operation=PendingIntent{ab043d8: PendingIntentRecord{2c8e331 com.cleanmaster.mguard broadcastIntent}}

RTC #2: Alarm{da7da16 type 1 when 1483280850358 com.emoji.keyboard.touchpal}

tag=*alarm*:com.cootek.abtest.ACTION_UPDATE_CONFIG

type=1 whenElapsed=+17m37s585ms when=2017-01-01 22:27:30

window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x0

operation=PendingIntent{7eebf97: PendingIntentRecord{4d1c584 com.emoji.keyboard.touchpal startService}}

RTC #1: Alarm{f97816d type 1 when 1483280831598 com.emoji.keyboard.touchpal}

tag=*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.noah_invest_temp

type=1 whenElapsed=+17m18s825ms when=2017-01-01 22:27:11

window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x0

operation=PendingIntent{43f81a2: PendingIntentRecord{dd5be33 com.emoji.keyboard.touchpal broadcastIntent}}

ELAPSED #0: Alarm{267b5f0 type 3 when 1819687 android}

tag=*alarm*:com.android.server.action.NETWORK_STATS_POLL

type=3 whenElapsed=+17m17s634ms when=+17m17s634ms

window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x8

operation=PendingIntent{737c769: PendingIntentRecord{5b815ee android broadcastIntent}}

Batch{a240a8f num=2 start=5022340 end=5322340 flgs=0x8}:

ELAPSED_WAKEUP #1: Alarm{62a411c type 2 when 5022340 android}

tag=*walarm*:com.android.server.ACTION_TRIGGER_IDLE

type=2 whenElapsed=+1h10m40s287ms when=+1h10m40s287ms

window=+5m0s0ms repeatInterval=0 count=0 flags=0x8

operation=PendingIntent{77c7125: PendingIntentRecord{213a2fa android broadcastIntent}}

RTC #0: Alarm{560c0ab type 1 when 1483282631596 com.emoji.keyboard.touchpal}

tag=*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.auto_update

type=1 whenElapsed=+47m18s823ms when=2017-01-01 22:57:11

window=+45m0s0ms repeatInterval=3600000 count=0 flags=0x0

operation=PendingIntent{4285308: PendingIntentRecord{ea7faa1 com.emoji.keyboard.touchpal broadcastIntent}}

Batch{568f4c6 num=1 start=7389280 end=7389280 flgs=0x1}:

RTC #0: Alarm{f68bc87 type 1 when 1483286400000 android}

tag=*alarm*:android.intent.action.DATE_CHANGED

type=1 whenElapsed=+1h50m7s227ms when=2017-01-02 00:00:00

window=0 repeatInterval=0 count=0 flags=0x1

operation=PendingIntent{7397b4: PendingIntentRecord{2a89fdd android broadcastIntent}}

Batch{46f9752 num=2 start=11808753 end=13348973}:

RTC #1: Alarm{f0a9a23 type 1 when 1483290819473 com.cleanmaster.mguard}

tag=*alarm*:com.ijinshan.cleanmaster_get_versions

type=1 whenElapsed=+3h3m46s700ms when=2017-01-02 01:13:39

window=+4h36m30s0ms repeatInterval=22120000 count=0 flags=0x0

operation=PendingIntent{c8c7b20: PendingIntentRecord{145cd9 com.cleanmaster.mguard broadcastIntent}}

RTC #0: Alarm{5cbd69e type 1 when 1483286959693 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.mguard.SERVICE_PROCESS_CHECKER

type=1 whenElapsed=+1h59m26s920ms when=2017-01-02 00:09:19

window=+1h30m0s0ms repeatInterval=7200000 count=0 flags=0x0

operation=PendingIntent{f62b57f: PendingIntentRecord{f8e294c com.cleanmaster.mguard broadcastIntent}}

Batch{ce4ed95 num=2 start=14610726 end=25005724}:

RTC #1: Alarm{41abeaa type 1 when 1483293621446 com.cleanmaster.mguard}

tag=*alarm*:weather_alert_notification_manager_action

type=1 whenElapsed=+3h50m28s673ms when=2017-01-02 02:00:21

window=+2h53m14s998ms repeatInterval=0 count=0 flags=0x0

operation=PendingIntent{6f72a9b: PendingIntentRecord{51a8e38 com.cleanmaster.mguard broadcastIntent}}

RTC #0: Alarm{af3ce11 type 1 when 1483293600000 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.service.ACTION_LOCATION_UPDATE

type=1 whenElapsed=+3h50m7s227ms when=2017-01-02 02:00:00

window=+4h30m0s0ms repeatInterval=21600000 count=0 flags=0x0

operation=PendingIntent{4be1b76: PendingIntentRecord{493d577 com.cleanmaster.mguard startService}}

Batch{f0655e4 num=1 start=32589280 end=32589280 flgs=0x9}:

RTC_WAKEUP #0: Alarm{6363a4d type 0 when 1483311600000 android}

tag=*walarm*:ScheduleConditionProvider.EVALUATE

type=0 whenElapsed=+8h50m7s227ms when=2017-01-02 07:00:00

window=0 repeatInterval=0 count=0 flags=0x9

operation=PendingIntent{f687902: PendingIntentRecord{de65213 android broadcastIntent}}

Batch{5c4ec50 num=4 start=43284665 end=44848593}:

RTC #3: Alarm{ab92e49 type 1 when 1483322295385 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.service.ACTION_WEATHER_UPDATE

type=1 whenElapsed=+11h48m22s612ms when=2017-01-02 09:58:15

window=+9h0m0s0ms repeatInterval=43200000 count=0 flags=0x0

operation=PendingIntent{269234e: PendingIntentRecord{bd9fc6f com.cleanmaster.mguard startService}}

RTC_WAKEUP #2: Alarm{3947d7c type 0 when 1483321497763 com.mobisystems.office}

tag=*walarm*:com.mobisystems.office.notifications_chain

type=0 whenElapsed=+11h35m4s990ms when=2017-01-02 09:44:57

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{e5d6605: PendingIntentRecord{fb8265a com.mobisystems.office startService}}

RTC_WAKEUP #1: Alarm{b3f08b type 0 when 1483311585697 com.mobisystems.office}

tag=*walarm*:com.mobisystems.office.dailycacheprune

type=0 whenElapsed=+8h49m52s924ms when=2017-01-02 06:59:45

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{669f568: PendingIntentRecord{a535d81 com.mobisystems.office startService}}

RTC #0: Alarm{ec24e26 type 1 when 1483304959314 com.cleanmaster.mguard}

tag=*alarm*:ss_delay_task_action

type=1 whenElapsed=+6h59m26s541ms when=2017-01-02 05:09:19

window=+5h14m59s999ms repeatInterval=0 count=0 flags=0x0

operation=PendingIntent{3ef0a67: PendingIntentRecord{49d0014 com.cleanmaster.mguard broadcastIntent}}

Batch{5750bd num=3 start=87151578 end=123623675}:

RTC #2: Alarm{ef526b2 type 1 when 1483366162298 com.cleanmaster.mguard}

tag=*alarm*:com.cmcm.adsdk.ConfigMonitor_Action

type=1 whenElapsed=+23h59m29s525ms when=2017-01-02 22:09:22

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{fd7e603: PendingIntentRecord{540980 com.cleanmaster.mguard broadcastIntent}}

RTC_WAKEUP #1: Alarm{7ad3bb9 type 0 when 1483350207514 com.mobisystems.office}

tag=*walarm*:com.mobisystems.office.dormant_user_notification

type=0 whenElapsed=+19h33m34s741ms when=2017-01-02 17:43:27

window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0

operation=PendingIntent{70afbfe: PendingIntentRecord{ce8df5f com.mobisystems.office startService}}

RTC #0: Alarm{5b03dac type 1 when 1483349973730 com.cleanmaster.mguard}

tag=*alarm*:com.cleanmaster.service.ALARM_SHOW_FREQUENCE_ACTION

type=1 whenElapsed=+19h29m40s957ms when=2017-01-02 17:39:33

window=+14h37m40s665ms repeatInterval=0 count=0 flags=0x0

operation=PendingIntent{ddcda75: PendingIntentRecord{d16da0a com.cleanmaster.mguard broadcastIntent}}

 

Past-due non-wakeup alarms: (none)

Number of delayed alarms: 6, total delay time: +6m8s777ms

Max delay time: +5m25s575ms, max non-interactive time: +11m50s25ms

 

Broadcast ref count: 0

 

mAllowWhileIdleMinTime=+5s0ms

Last allow while idle dispatch times:

UID u0a51: -2m22s958ms

 

Top Alarms:

+17s621ms running, 0 wakeups, 2 alarms: u0a54:com.emoji.keyboard.touchpal

*alarm*:com.cootek.presentation.action.CONFIG_UPDATE

+16s145ms running, 0 wakeups, 1 alarms: u0a47:com.cleanmaster.mguard

*alarm*:com.cleanmaster.NotificationDisturbAlarm

+16s140ms running, 0 wakeups, 1 alarms: u0a47:com.cleanmaster.mguard

*alarm*:android.scenetrigger.workeralarm

+16s139ms running, 0 wakeups, 1 alarms: u0a54:com.emoji.keyboard.touchpal

*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.noah_invest_temp

+16s127ms running, 0 wakeups, 1 alarms: u0a54:com.emoji.keyboard.touchpal

*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.auto_update

+16s120ms running, 0 wakeups, 1 alarms: 1000:android

*alarm*:com.android.server.action.NETWORK_STATS_POLL

+2s616ms running, 0 wakeups, 2 alarms: u0a54:com.emoji.keyboard.touchpal

*alarm*:com.cootek.usage.alarm_operation

+930ms running, 0 wakeups, 4 alarms: 1000:android

*alarm*:android.intent.action.TIME_TICK

+354ms running, 0 wakeups, 1 alarms: u0a40:com.android.deskclock

*alarm*:com.android.deskclock.ON_QUARTER_HOUR

+175ms running, 1 wakeups, 1 alarms: u0a49:com.android.mms

*walarm*:com.android.mms.register.alarm

 

Alarm Stats:

1000:android +17s96ms running, 4 wakeups:

+16s120ms 0 wakes 1 alarms, last -12m35s386ms:

*alarm*:com.android.server.action.NETWORK_STATS_POLL

+930ms 0 wakes 4 alarms, last -33s981ms:

*alarm*:android.intent.action.TIME_TICK

+48ms 2 wakes 2 alarms, last -11m33s123ms:

*walarm*:*job.delay*

+46ms 1 wakes 1 alarms, last -9m51s714ms:

*walarm*:ScheduleConditionProvider.EVALUATE

+37ms 1 wakes 1 alarms, last -11m33s123ms:

*walarm*:*job.deadline*

u0a40:com.android.deskclock +354ms running, 0 wakeups:

+354ms 0 wakes 1 alarms, last -9m51s714ms:

*alarm*:com.android.deskclock.ON_QUARTER_HOUR

u0a47:com.cleanmaster.mguard +16s219ms running, 1 wakeups:

+16s145ms 0 wakes 1 alarms, last -12m35s386ms:

*alarm*:com.cleanmaster.NotificationDisturbAlarm

+16s140ms 0 wakes 1 alarms, last -12m35s386ms:

*alarm*:android.scenetrigger.workeralarm

+66ms 0 wakes 1 alarms, last -11m33s123ms:

*alarm*:com.cleanmaster.screensave.intent.action.REPORT_INFOC_CMC_AVOID

+46ms 0 wakes 1 alarms, last -11m33s123ms:

*alarm*:com.ijinshan.common.kinfoc.ActivityTimer

+40ms 1 wakes 1 alarms, last -11m33s123ms:

*walarm*:com.cleanmaster.service.ACTION_UPDATE_CLOUD_CFG

+40ms 0 wakes 1 alarms, last -11m33s123ms:

*alarm*:com.ijinshan.cleanmaster_check_apk_update

+40ms 0 wakes 1 alarms, last -11m33s123ms:

*alarm*:android.scenemonitor.ap_hotspot_workeralarm

+8ms 0 wakes 2 alarms, last -33s262ms:

*alarm*:com.cleanmaster.service.ACTION_LOCATION_UPDATE

u0a49:com.android.mms +175ms running, 1 wakeups:

+175ms 1 wakes 1 alarms, last -11m33s123ms:

*walarm*:com.android.mms.register.alarm

u0a51:com.android.systemui +6ms running, 1 wakeups:

+6ms 1 wakes 1 alarms, last -2m22s958ms:

*walarm*:screen_off_app_clear

u0a54:com.emoji.keyboard.touchpal +19s837ms running, 0 wakeups:

+17s621ms 0 wakes 2 alarms, last -12m16s422ms:

*alarm*:com.cootek.presentation.action.CONFIG_UPDATE

+16s139ms 0 wakes 1 alarms, last -12m35s386ms:

*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.noah_invest_temp

+16s127ms 0 wakes 1 alarms, last -12m35s386ms:

*alarm*:com.emoji.keyboard.touchpal.INTERNAL_ACTION.auto_update

+2s616ms 0 wakes 2 alarms, last -12m16s422ms:

*alarm*:com.cootek.usage.alarm_operation

+48ms 0 wakes 2 alarms, last -11m33s123ms:

*alarm*:com.cootek.abtest.ACTION_UPDATE_CONFIG

u0a76:com.android.providers.calendar +55ms running, 3 wakeups:

+55ms 3 wakes 3 alarms, last -9m45s775ms:

*walarm*:com.android.providers.calendar.intent.CalendarProvider2

HS8937QC:/ $


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM