Home
last modified time | relevance | path

Searched refs:iowait (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/startop/scripts/trace_analyzer/test_fixtures/
Dcommon_systrace15 …kworker/u16:16-23269 (23269) [004] d.h3 14594.182228: sched_blocked_reason: pid=18150 iowait=0 cal…
145 …<...>-18150 (-----) [006] d..3 14594.228442: sched_blocked_reason: pid=1398 iowait=1 caller=wait_o…
162 …<...>-13917 (-----) [001] d..2 14594.229492: sched_blocked_reason: pid=13916 iowait=0 caller=__rws…
166 …<...>-13916 (-----) [002] d..2 14594.229535: sched_blocked_reason: pid=13917 iowait=0 caller=do_pa…
188 …<...>-13918 (-----) [002] d..2 14594.229856: sched_blocked_reason: pid=13917 iowait=0 caller=SyS_m…
200 …<...>-14607 (-----) [000] d..2 14594.259609: sched_blocked_reason: pid=14624 iowait=0 caller=__rws…
214 …Binder:14607_1-14624 (14607) [002] d..2 14594.259941: sched_blocked_reason: pid=14607 iowait=0 cal…
218 …<...>-14607 (-----) [000] d..2 14594.260005: sched_blocked_reason: pid=14624 iowait=0 caller=__rws…
221 …Binder:14607_1-14624 (14607) [002] d..2 14594.260038: sched_blocked_reason: pid=14607 iowait=0 cal…
222 …<...>-14607 (-----) [000] d..2 14594.260064: sched_blocked_reason: pid=14624 iowait=0 caller=__rws…
[all …]
/frameworks/base/startop/scripts/trace_analyzer/
Dqueries_find_sched_switch_unblocked.sql27 iowait, -- iowait=0 or iowait=1
40 AND sbr.iowait = 1
/frameworks/base/core/java/com/android/internal/os/
DProcessCpuTracker.java900 int totalTime, int user, int system, int iowait, int irq, int softIrq,
904 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
916 if (iowait > 0) {
918 printRatio(pw, iowait, totalTime);
/frameworks/base/startop/scripts/trace_analyzer/lib/
Dtrace2db.py127 iowait = Column(Integer, nullable=False) variable in SchedBlockedReason
/frameworks/base/services/core/java/com/android/server/am/
DEventLogTags.logtags6 2721 cpu (total|1|6),(user|1|6),(system|1|6),(iowait|1|6),(irq|1|6),(softirq|1|6)
DAppProfiler.java1814 int iowait = mProcessCpuTracker.getLastIoWaitTime(); in updateCpuStatsNow() local
1819 int total = user + system + iowait + irq + softIrq + idle; in updateCpuStatsNow()
1823 ((user + system + iowait + irq + softIrq) * 100) / total, in updateCpuStatsNow()
1826 (iowait * 100) / total, in updateCpuStatsNow()