Home
last modified time | relevance | path

Searched defs:propertyId (Results 1 – 25 of 26) sorted by relevance

12

/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowCarUnitsManager.java50 protected static Unit[] getUnitsSupportedByProperty(int propertyId) { in getUnitsSupportedByProperty()
55 protected static Unit getUnitUsedByProperty(int propertyId) { in getUnitUsedByProperty()
60 protected static void setUnitUsedByProperty(int propertyId, int unitId) { in setUnitUsedByProperty()
83 public static void setUnitsSupportedByProperty(int propertyId, Unit[] units) { in setUnitsSupportedByProperty()
/packages/services/Car/car-lib/src/android/car/hardware/hvac/
DCarHvacManager.java248 void onErrorEvent(@PropertyId int propertyId, int zone); in onErrorEvent()
267 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent()
287 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent()
363 public boolean isPropertyAvailable(@PropertyId int propertyId, int area) { in isPropertyAvailable()
373 public boolean getBooleanProperty(@PropertyId int propertyId, int area) { in getBooleanProperty()
383 public float getFloatProperty(@PropertyId int propertyId, int area) { in getFloatProperty()
393 public int getIntProperty(@PropertyId int propertyId, int area) { in getIntProperty()
403 public void setBooleanProperty(@PropertyId int propertyId, int area, boolean val) { in setBooleanProperty()
415 public void setFloatProperty(@PropertyId int propertyId, int area, float val) { in setFloatProperty()
427 public void setIntProperty(@PropertyId int propertyId, int area, int val) { in setIntProperty()
/packages/services/Car/car-lib/src/android/car/hardware/cabin/
DCarCabinManager.java415 void onErrorEvent(@PropertyId int propertyId, int zone); in onErrorEvent()
434 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent()
452 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent()
483 public static boolean isZonedProperty(@PropertyId int propertyId) { in isZonedProperty()
534 public boolean getBooleanProperty(@PropertyId int propertyId, int area) { in getBooleanProperty()
544 public float getFloatProperty(@PropertyId int propertyId, int area) { in getFloatProperty()
554 public int getIntProperty(@PropertyId int propertyId, int area) { in getIntProperty()
564 public void setBooleanProperty(@PropertyId int propertyId, int area, boolean val) { in setBooleanProperty()
576 public void setFloatProperty(@PropertyId int propertyId, int area, float val) { in setFloatProperty()
588 public void setIntProperty(@PropertyId int propertyId, int area, int val) { in setIntProperty()
/packages/apps/Car/Settings/src/com/android/car/settings/units/
DCarUnitsManager.java93 protected boolean isPropertyAvailable(int propertyId) { in isPropertyAvailable()
105 protected Unit[] getUnitsSupportedByProperty(int propertyId) { in getUnitsSupportedByProperty()
135 protected Unit getUnitUsedByProperty(int propertyId) { in getUnitUsedByProperty()
149 protected void setUnitUsedByProperty(int propertyId, int unitId) { in setUnitUsedByProperty()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarVendorExtensionManager.java70 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent()
101 void onErrorEvent(int propertyId, int zone); in onErrorEvent()
146 public boolean isPropertyAvailable(int propertyId, int area) { in isPropertyAvailable()
227 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent()
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()
DCarSensorManager.java291 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent()
303 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent()
DCarPropertyConfig.java61 float maxSampleRate, float minSampleRate, int propertyId, in CarPropertyConfig()
/packages/apps/Car/Cluster/src/android/car/cluster/sensors/
DSensors.java94 private static <T> Sensor<T> registerSensor(String propertyName, int propertyId, int areaId, in registerSensor()
134 public List<Sensor<?>> getSensorsForPropertyId(int propertyId) { in getSensorsForPropertyId()
DSensor.java52 Sensor(String name, int propertyId, int areaId, int expectedPropertyType, in Sensor()
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DUtils.java72 int propertyId, in readVhalProperty()
79 int propertyId, in readVhalProperty()
DCarPropertyTest.java82 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent()
/packages/services/Car/service/src/com/android/car/hal/
DCarPropertyUtils.java44 VehiclePropValue halValue, int propertyId) { in toCarPropertyValue()
137 static CarPropertyConfig<?> toCarPropertyConfig(VehiclePropConfig p, int propertyId) { in toCarPropertyConfig()
DVehicleHal.java306 public boolean isPropertySupported(int propertyId) { in isPropertySupported()
314 public VehiclePropValue get(int propertyId) throws PropertyTimeoutException { in get()
318 public VehiclePropValue get(int propertyId, int areaId) throws PropertyTimeoutException { in get()
329 public <T> T get(Class clazz, int propertyId) throws PropertyTimeoutException { in get()
333 public <T> T get(Class clazz, int propertyId, int areaId) throws PropertyTimeoutException { in get()
DDiagnosticHalService.java62 void setSupported(int propertyId) { in setSupported()
66 boolean isSupported(int propertyId) { in isSupported()
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DDiagnosticEventBuilder.java105 public DiagnosticEventBuilder(int propertyId) { in DiagnosticEventBuilder()
110 int propertyId, int numVendorIntSensors, int numVendorFloatSensors) { in DiagnosticEventBuilder()
/packages/services/Car/tests/carservice_test/src/com/android/car/
DMockedCarTestBase.java209 protected synchronized VehiclePropConfigBuilder addProperty(int propertyId, in addProperty()
216 protected synchronized VehiclePropConfigBuilder addProperty(int propertyId) { in addProperty()
222 protected synchronized VehiclePropConfigBuilder addProperty(int propertyId, in addProperty()
229 protected synchronized VehiclePropConfigBuilder addStaticProperty(int propertyId, in addStaticProperty()
DCarCabinManagerTest.java233 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent()
DCarHvacManagerTest.java272 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent()
/packages/services/Car/evs/app/
Devs_app.cpp44 VehicleProperty propertyId) { in subscribeToVHal()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java172 int propertyId, @FloatRange(from = 0.0, to = 100.0) float rate) { in registerCallback()
205 private boolean registerOrUpdatePropertyListener(int propertyId, float rate) { in registerOrUpdatePropertyListener()
260 public void unregisterCallback(@NonNull CarPropertyEventCallback callback, int propertyId) { in unregisterCallback()
266 private void doUnregisterListenerLocked(CarPropertyEventCallback listener, int propertyId) { in doUnregisterListenerLocked()
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.java630 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/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/sensor/
DSensorsTestFragment.java256 int propertyId = property.getPropertyId(); in refreshSensorInfoText() local
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
DMockedVehicleHal.java123 public synchronized void injectError(int errorCode, int propertyId, int areaId) { in injectError()

12