Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/storagemonitoring/
DUfsWearInformationProvider.java78 Optional<Integer> lifetimeB = Optional.empty(); in load() local
101 lifetimeB = Optional.of(Integer.decode(value)); in load()
110 if (!lifetimeA.isPresent() || !lifetimeB.isPresent() || !eol.isPresent()) { in load()
115 convertLifetime(lifetimeB.get()), in load()
DHealthServiceWearInfoProvider.java58 final MutableInt lifetimeB = new MutableInt(0); in load() local
72 lifetimeB.value = value2.lifetimeB; in load()
102 convertLifetime(lifetimeB.value), preEol.value); in load()
DEMmcWearInformationProvider.java96 int lifetimeB; in load() local
101 lifetimeB = Integer.decode(lifetimes[1]); in load()
109 convertLifetime(lifetimeB), in load()
DWearInformation.java51 public WearInformation(int lifetimeA, int lifetimeB, int preEol) { in WearInformation() argument
53 lifetimeEstimateB = lifetimeB; in WearInformation()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DCarStorageMonitoringTest.java125 storageInfo.lifetimeB = WearInformation.UNKNOWN_LIFETIME_ESTIMATE; in testHealthServiceWearInformationProvider()
143 assertThat(wearInformation.lifetimeEstimateB).isEqualTo(storageInfo.lifetimeB); in testHealthServiceWearInformationProvider()