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.java77 Optional<Integer> lifetimeA = Optional.empty(); in load() local
98 lifetimeA = Optional.of(Integer.decode(value)); in load()
113 if (!lifetimeA.isPresent() || !lifetimeB.isPresent() || !eol.isPresent()) { in load()
117 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()
102 return new WearInformation(convertLifetime(lifetimeA.value), in load()
DEMmcWearInformationProvider.java91 int lifetimeA; in load() local
96 lifetimeA = Integer.decode(lifetimes[0]); in load()
104 return new WearInformation(convertLifetime(lifetimeA), in load()
DWearInformation.java50 public WearInformation(int lifetimeA, int lifetimeB, int preEol) { in WearInformation() argument
51 lifetimeEstimateA = lifetimeA; in WearInformation()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DCarStorageMonitoringTest.java125 storageInfo.lifetimeA = 3; in testHealthServiceWearInformationProvider()