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.java57 private CarPropertyConfig(int access, int areaType, int changeMode, in CarPropertyConfig() argument
62 mAreaType = areaType; in CarPropertyConfig()
493 public static <T> Builder<T> newBuilder(Class<T> type, int propertyId, int areaType,
495 return new Builder<>(areaCapacity, areaType, propertyId, type);
505 public static <T> Builder<T> newBuilder(Class<T> type, int propertyId, int areaType) {
506 return new Builder<>(0, areaType, propertyId, type);
527 private Builder(int areaCapacity, int areaType, int propertyId, Class<T> type) {
528 mAreaType = areaType;
/packages/services/Car/service/src/com/android/car/hal/
DCarPropertyUtils.java260 int areaType = getVehicleAreaType(p.prop & VehicleArea.MASK); in toCarPropertyConfig() local
265 .newBuilder(clazz, propertyId, areaType, /* capacity */ 1) in toCarPropertyConfig()
276 .newBuilder(clazz, propertyId, areaType, /* capacity */ p.areaConfigs.size()) in toCarPropertyConfig()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java126 int areaType = getVehicleAreaType(propId); in addProperty() local
129 .newBuilder(type, propId, areaType); in addProperty()