Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java929 int totalTime, int user, int system, int iowait, int irq, int softIrq,
933 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
955 if (softIrq > 0) {
957 printRatio(pw, softIrq, totalTime);
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DAppProfiler.java2038 int softIrq = mProcessCpuTracker.getLastSoftIrqTime(); in updateCpuStatsNow() local
2041 int total = user + system + iowait + irq + softIrq + idle; in updateCpuStatsNow()
2045 ((user + system + iowait + irq + softIrq) * 100) / total, in updateCpuStatsNow()
2050 (softIrq * 100) / total); in updateCpuStatsNow()