Home
last modified time | relevance | path

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

/platform_testing/tests/automotive/health/boottime/src/android/boottime/postprocessor/
DDmesgPostProcessor.java247 double bootLoaderTotalTime = 0d; in analyzeBootLoaderTimingInfo() local
255 bootLoaderTotalTime += Double.parseDouble(bootKeyVal[1]); in analyzeBootLoaderTimingInfo()
260 CLog.i("Bootloader time is: %s", bootLoaderTotalTime); in analyzeBootLoaderTimingInfo()
261 metrics.put(BOOTLOADER_TIME, bootLoaderTotalTime); in analyzeBootLoaderTimingInfo()
269 double totalBootTime = bootLoaderTotalTime + bootCompleteTime; in analyzeBootLoaderTimingInfo()
/platform_testing/host_runners/boot/src/com/android/boot/
DBootTimeTest.java1107 double bootLoaderTotalTime = 0d; in analyzeBootloaderTimingInfo() local
1122 bootLoaderTotalTime += Double.parseDouble(bootKeyVal[1]); in analyzeBootloaderTimingInfo()
1127 CLog.i("Bootloader time is :%s", bootLoaderTotalTime); in analyzeBootloaderTimingInfo()
1129 mBootInfo.get(BOOTLOADER_TIME).add(bootLoaderTotalTime); in analyzeBootloaderTimingInfo()
1132 timeList.add(bootLoaderTotalTime); in analyzeBootloaderTimingInfo()
1135 mBootIterationInfo.put(BOOTLOADER_TIME, bootLoaderTotalTime); in analyzeBootloaderTimingInfo()
1146 double totalBootTime = bootLoaderTotalTime + bootCompleteTime; in analyzeBootloaderTimingInfo()