Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/power/stats/
DKernelWakelockReader.java236 public KernelWakelockStats parseProcWakelocks(byte[] wlBuffer, int len, boolean wakeup_sources, in parseProcWakelocks() argument
247 for (i = 0; i < len && wlBuffer[i] != '\n' && wlBuffer[i] != '\0'; i++); in parseProcWakelocks()
253 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0'; in parseProcWakelocks()
267 if ((wlBuffer[j] & 0x80) != 0) wlBuffer[j] = (byte) '?'; in parseProcWakelocks()
269 boolean parsed = Process.parseProcLine(wlBuffer, startIndex, endIndex, in parseProcWakelocks()
307 new String(wlBuffer, startIndex, endIndex - startIndex)); in parseProcWakelocks()