Home
last modified time | relevance | path

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

/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java51 private final Map<PropKey, CarPropertyValue> mValues = new HashMap<>();
91 return mValues.get(PropKey.of(prop, zone)); in getProperty()
97 mValues.put(PropKey.of(prop), prop); in setProperty()
139 mValues.put(PropKey.of(v), v); in updateValues()
170 private static class PropKey { class in FakeCarPropertyService
174 private PropKey(int propId, int areaId) { in PropKey() method in FakeCarPropertyService.PropKey
179 static PropKey of(int propId, int areaId) { in of()
180 return new PropKey(propId, areaId); in of()
183 static PropKey of(CarPropertyValue carPropertyValue) { in of()
193 if (!(o instanceof PropKey)) { in equals()
[all …]