Home
last modified time | relevance | path

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

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DKernelLogParserTest.java288 assertEquals(1, kernelLog.getMiscEvents(KernelLogParser.PAGE_ALLOC_FAILURE).size()); in testPageAllocationFailureParse()
291 MiscKernelLogItem miscItem = kernelLog.getMiscEvents(KernelLogParser.PAGE_ALLOC_FAILURE) in testPageAllocationFailureParse()
294 assertEquals(KernelLogParser.PAGE_ALLOC_FAILURE, miscItem.getCategory()); in testPageAllocationFailureParse()
298 assertEquals(KernelLogParser.PAGE_ALLOC_FAILURE, failItem.getCategory()); in testPageAllocationFailureParse()
/tools/loganalysis/src/com/android/loganalysis/parser/
DKernelLogParser.java41 public static final String PAGE_ALLOC_FAILURE = "PAGE_ALLOC_FAILURE"; field in KernelLogParser
177 } else if (category.equals(PAGE_ALLOC_FAILURE)) { in checkAndAddKernelEvent()
260 mPatternUtil.addPattern(PAGE_ALLOC_FAILURE_PATTERN, PAGE_ALLOC_FAILURE); in initPatterns()