Home
last modified time | relevance | path

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

/platform_testing/tests/automotive/health/boottime/src/android/boottime/postprocessor/
DDmesgPostProcessor.java249 String[] bootKeyVal = bootLoaderPhase.split(":"); in analyzeBootLoaderTimingInfo() local
250 String key = String.format("%s%s", BOOTLOADER_PREFIX, bootKeyVal[0]); in analyzeBootLoaderTimingInfo()
251 metrics.put(key, Double.parseDouble(bootKeyVal[1])); in analyzeBootLoaderTimingInfo()
254 if (!BOOTLOADER_PHASE_SW.equalsIgnoreCase(bootKeyVal[0])) { in analyzeBootLoaderTimingInfo()
255 bootLoaderTotalTime += Double.parseDouble(bootKeyVal[1]); in analyzeBootLoaderTimingInfo()
/platform_testing/host_runners/boot/src/com/android/boot/
DBootTimeTest.java1109 String[] bootKeyVal = bootLoaderPhase.split(":"); in analyzeBootloaderTimingInfo() local
1110 String key = String.format("%s%s", BOOTLOADER_PREFIX, bootKeyVal[0]); in analyzeBootloaderTimingInfo()
1112 mBootInfo.get(key).add(Double.parseDouble(bootKeyVal[1])); in analyzeBootloaderTimingInfo()
1115 timeList.add(Double.parseDouble(bootKeyVal[1])); in analyzeBootloaderTimingInfo()
1118 mBootIterationInfo.put(key, Double.parseDouble(bootKeyVal[1])); in analyzeBootloaderTimingInfo()
1121 if (!BOOTLOADER_PHASE_SW.equalsIgnoreCase(bootKeyVal[0])) { in analyzeBootloaderTimingInfo()
1122 bootLoaderTotalTime += Double.parseDouble(bootKeyVal[1]); in analyzeBootloaderTimingInfo()