Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java59 private CarPropertyConfig(int access, int areaType, int changeMode, in CarPropertyConfig() argument
64 mAreaType = areaType; in CarPropertyConfig()
477 public static <T> Builder<T> newBuilder(Class<T> type, int propertyId, int areaType,
479 return new Builder<>(areaCapacity, areaType, propertyId, type);
489 public static <T> Builder<T> newBuilder(Class<T> type, int propertyId, int areaType) {
490 return new Builder<>(0, areaType, propertyId, type);
511 private Builder(int areaCapacity, int areaType, int propertyId, Class<T> type) {
512 mAreaType = areaType;
/packages/services/Car/service/src/com/android/car/hal/
DCarPropertyUtils.java138 int areaType = getVehicleAreaType(p.prop & VehicleArea.MASK); in toCarPropertyConfig() local
148 .newBuilder(clazz, propertyId, areaType, /* capacity */ 1) in toCarPropertyConfig()
159 .newBuilder(clazz, propertyId, areaType, /* capacity */ p.areaConfigs.size()) in toCarPropertyConfig()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java113 int areaType = getVehicleAreaType(propId); in addProperty() local
116 .newBuilder(type, propId, areaType); in addProperty()