Home
last modified time | relevance | path

Searched refs:softIrq (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java900 int totalTime, int user, int system, int iowait, int irq, int softIrq,
904 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
926 if (softIrq > 0) {
928 printRatio(pw, softIrq, totalTime);
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DAppProfiler.java1811 int softIrq = mProcessCpuTracker.getLastSoftIrqTime(); in updateCpuStatsNow() local
1814 int total = user + system + iowait + irq + softIrq + idle; in updateCpuStatsNow()
1818 ((user + system + iowait + irq + softIrq) * 100) / total, in updateCpuStatsNow()
1823 (softIrq * 100) / total); in updateCpuStatsNow()