Home
last modified time | relevance | path

Searched defs:areaId (Results 1 – 23 of 23) sorted by relevance

/packages/services/Car/tests/vehiclehal_test/assets/
Dcar_hvac_test.json4 "areaId": 1, number
10 "areaId": 4, number
16 "areaId": 0, number
22 "areaId": 0, number
28 "areaId": 0, number
34 "areaId": 0, number
40 "areaId": 0, number
46 "areaId": 0, number
52 "areaId": 0, number
58 "areaId": 0, number
[all …]
Dcar_info_test.json4 "areaId": 0, number
10 "areaId": 0, number
16 "areaId": 0, number
Dcar_diagnostic_test.json4 "areaId": 0, number
14 "areaId": 0, number
24 "areaId": 0, number
34 "areaId": 0, number
44 "areaId": 0, number
54 "areaId": 0, number
64 "areaId": 0, number
74 "areaId": 0, number
84 "areaId": 0, number
94 "areaId": 0, number
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java440 public <E> CarPropertyValue<E> getProperty(@NonNull Class<E> clazz, int propId, int areaId) { in getProperty()
468 public <E> CarPropertyValue<E> getProperty(int propId, int areaId) { in getProperty()
487 public <E> void setProperty(@NonNull Class<E> clazz, int propId, int areaId, @NonNull E val) { in setProperty()
507 public void setBooleanProperty(int prop, int areaId, boolean val) { in setBooleanProperty()
518 public void setFloatProperty(int prop, int areaId, float val) { in setFloatProperty()
529 public void setIntProperty(int prop, int areaId, int val) { in setIntProperty()
541 int areaId = event.getCarPropertyValue().getAreaId(); in onPropertyChanged() local
DCarPropertyEvent.java84 public static CarPropertyEvent createErrorEvent(int propertyId, int areaId) { in createErrorEvent()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
DHvacTestFragment.java585 int areaId = prop.getFirstAndOnlyAreaId(); in configureAutoRecircOn() local
596 int areaId = prop.getFirstAndOnlyAreaId(); in configureTempDisplayUnit() local
609 int areaId = prop.getFirstAndOnlyAreaId(); in configurePowerOn() local
620 int areaId = prop.getFirstAndOnlyAreaId(); in configurePowerAndAcOn() local
630 private void setBooleanProperty(int propertyId, int areaId, boolean value) { in setBooleanProperty()
639 private void setIntProperty(int propertyId, int areaId, int value) { in setIntProperty()
648 private void setFloatProperty(int propertyId, int areaId, float value) { in setFloatProperty()
/packages/services/Car/service/src/com/android/car/hal/
DHalClient.java116 int areaId = requestedPropValue.areaId; in getValue() local
184 final int areaId; field in HalClient.PropertySetError
186 PropertySetError(int errorCode, int propId, int areaId) { in PropertySetError()
250 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError()
DVehicleHal.java319 public VehiclePropValue get(int propertyId, int areaId) throws PropertyTimeoutException { in get()
334 public <T> T get(Class clazz, int propertyId, int areaId) throws PropertyTimeoutException { in get()
401 VehiclePropValueSetter set(int propId, int areaId) { in set()
455 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError()
495 public void dumpPropertyValueByCommend(PrintWriter writer, String propId, String areaId) { in dumpPropertyValueByCommend()
668 private VehiclePropValueSetter(HalClient client, int propId, int areaId) { in VehiclePropValueSetter()
732 private static VehiclePropValue createPropValue(int propId, int areaId) { in createPropValue()
DCarPropertyUtils.java46 int areaId = halValue.areaId; in toCarPropertyValue() local
DPropertyHalService.java143 public CarPropertyValue getProperty(int mgrPropId, int areaId) { in getProperty()
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
DVehiclePropConfigBuilder.java98 public VehiclePropConfigBuilder addAreaConfig(int areaId, int minValue, int maxValue) { in addAreaConfig()
108 public VehiclePropConfigBuilder addAreaConfig(int areaId, float minValue, float maxValue) { in addAreaConfig()
DMockedVehicleHal.java123 public synchronized void injectError(int errorCode, int propertyId, int areaId) { in injectError()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java279 public boolean hasArea(int areaId) { in hasArea()
289 public T getMinValue(int areaId) { in getMinValue()
300 public T getMaxValue(int areaId) { in getMaxValue()
369 int areaId = in.readInt(); in CarPropertyConfig() local
DCarPropertyValue.java76 public CarPropertyValue(int propertyId, int areaId, T value) { in CarPropertyValue()
89 public CarPropertyValue(int propertyId, int areaId, int status, long timestamp, T value) { in CarPropertyValue()
/packages/apps/Car/Cluster/src/android/car/cluster/sensors/
DSensor.java52 Sensor(String name, int propertyId, int areaId, int expectedPropertyType, in Sensor()
DSensors.java94 private static <T> Sensor<T> registerSensor(String propertyName, int propertyId, int areaId, in registerSensor()
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DE2ePerformanceTest.java229 CarPropertyConfig<Float> cfg, int areaId, CountDownLatch counter) { in invokeSetAndGetForHvacFloat()
236 mgr.setFloatProperty(cfg.getPropertyId(), areaId, curValue); in invokeSetAndGetForHvacFloat() local
DVhalJsonReader.java73 int areaId = rawEvent.getInt(JSON_FIELD_AREA_ID); in getEvent() local
DUtils.java80 int areaId, in readVhalProperty()
/packages/services/Car/car-lib/src/com/android/car/internal/
DCarRatedFloatListeners.java132 public boolean needUpdateForAreaId(int areaId, long eventTime) { in needUpdateForAreaId()
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DVehiclePropValueBuilder.java60 public VehiclePropValueBuilder setAreaId(int areaId) { in setAreaId()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java173 private PropKey(int propId, int areaId) { in PropKey()
178 static PropKey of(int propId, int areaId) { in of()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
DPropertyListAdapter.java133 public void onErrorEvent(int propId, int areaId) { in onErrorEvent()