HomeSort by relevance Sort by last modified time
    Searched defs:IOW (Results 1 - 4 of 4) sorted by null

  /external/autotest/client/bin/input/
linux_ioctl.py 53 def IOW(t, nr, t_format):
  /tools/loganalysis/src/com/android/loganalysis/item/
TopItem.java 36 public static final String IOW = "IOW";
47 USER, NICE, SYSTEM, IDLE, IOW, IRQ, SIRQ, TOTAL, TEXT));
117 * Get the number of IOW ticks.
120 return (Integer) getAttribute(IOW);
124 * Set the number of IOW ticks.
126 public void setIow(int iow) {
127 setAttribute(IOW, iow);
  /tools/tradefederation/core/src/com/android/tradefed/device/
TopHelper.java 46 Pattern.compile("User (\\d+)%, System (\\d+)%, IOW (\\d+)%, IRQ (\\d+)%");
58 IOW,
286 * Get the average IOW CPU usage for a list of {@link TopStats}.
292 return getAveragePercentage(topStats, PercentCategory.IOW);
327 case IOW:
CpuStatsCollector.java 63 IOW,
255 s.mTimeStats.put(TimeCategory.IOW, Integer.parseInt(args[5]));
430 * Get the mean of the iow CPU usage for a list of {@link CpuStats}.
436 return getPercentageMean(cpuStats, TimeCategory.IOW);

Completed in 3585 milliseconds