Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DNativeDeviceTest.java2458 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistory()
2473 doReturn("").when(spy).getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistoryEmpty()
2483 doReturn("invalid output").when(spy).getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistoryInvalid()
2499 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistorySince()
2513 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistorySince_limit()
2532 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testGetBootHistorySinceInMillisecond()
2554 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testDeviceSoftRestartedSince()
2587 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testDeviceSoftRestartedSinceWithAbnormalReboot()
2612 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testDeviceSoftRestartedSinceNotAfterNormalReboot()
2632 .getProperty(DeviceProperties.BOOT_REASON_HISTORY); in testDeviceSoftRestartedSinceAfterNormalReboot()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceProperties.java42 public static final String BOOT_REASON_HISTORY = "persist.sys.boot.reason.history"; field in DeviceProperties
DNativeDevice.java4616 String output = getProperty(DeviceProperties.BOOT_REASON_HISTORY); in getBootHistory()