Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/storagemonitoring/
DUfsWearInformationProvider.java71 Optional<Integer> lifetimeA = Optional.empty(); in load() local
92 lifetimeA = Optional.of(Integer.decode(value)); in load()
104 if (!lifetimeA.isPresent() || !lifetimeB.isPresent() || !eol.isPresent()) { in load()
108 return new WearInformation(convertLifetime(lifetimeA.get()), in load()
DHealthServiceWearInfoProvider.java57 final MutableInt lifetimeA = new MutableInt(0); in load() local
71 lifetimeA.value = value2.lifetimeA; in load()
101 return new WearInformation(lifetimeA.value, lifetimeB.value, in load()
DEMmcWearInformationProvider.java88 int lifetimeA; in load() local
93 lifetimeA = Integer.decode(lifetimes[0]); in load()
102 return new WearInformation(convertLifetime(lifetimeA), in load()
DWearInformation.java51 public WearInformation(int lifetimeA, int lifetimeB, int preEol) { in WearInformation() argument
52 lifetimeEstimateA = lifetimeA; in WearInformation()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DCarStorageMonitoringTest.java124 storageInfo.lifetimeA = 3; in testHealthServiceWearInformationProvider()
142 assertThat(wearInformation.lifetimeEstimateA).isEqualTo(storageInfo.lifetimeA); in testHealthServiceWearInformationProvider()