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.java72 Optional<Integer> lifetimeB = Optional.empty(); in load() local
95 lifetimeB = Optional.of(Integer.decode(value)); in load()
104 if (!lifetimeA.isPresent() || !lifetimeB.isPresent() || !eol.isPresent()) { in load()
109 convertLifetime(lifetimeB.get()), in load()
DHealthServiceWearInfoProvider.java58 final MutableInt lifetimeB = new MutableInt(0); in load() local
72 lifetimeB.value = value2.lifetimeB; in load()
101 return new WearInformation(lifetimeA.value, lifetimeB.value, in load()
DEMmcWearInformationProvider.java89 int lifetimeB; in load() local
94 lifetimeB = Integer.decode(lifetimes[1]); in load()
103 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()