Searched refs:requestedPropValue (Results 1 - 4 of 4) sorted by relevance

/packages/services/Car/tests/carservice_test/src/com/android/car/test/
H A DCarVendorExtensionManagerTest.java245 public synchronized void get(VehiclePropValue requestedPropValue, getCallback cb) { argument
246 if (!isVendorProperty(requestedPropValue.prop)) {
251 result.prop = requestedPropValue.prop;
252 result.areaId = requestedPropValue.areaId;
254 if (requestedPropValue.prop == CUSTOM_BYTES_PROP_ID_2 && mBytes != null) {
260 VehiclePropValue existingValue = mValues.get(requestedPropValue.prop);
264 result = requestedPropValue;
/packages/services/Car/service/src/com/android/car/hal/
H A DHalClient.java107 VehiclePropValue getValue(VehiclePropValue requestedPropValue) throws PropertyTimeoutException { argument
110 ValueResult res = internalGet(requestedPropValue);
115 int propId = requestedPropValue.prop;
116 int areaId = requestedPropValue.areaId;
135 private ValueResult internalGet(VehiclePropValue requestedPropValue) { argument
138 mVehicle.get(requestedPropValue,
H A DVehicleHal.java426 public <T> T get(Class clazz, VehiclePropValue requestedPropValue) argument
429 propValue = mHalClient.getValue(requestedPropValue);
456 public VehiclePropValue get(VehiclePropValue requestedPropValue) argument
458 return mHalClient.getValue(requestedPropValue);
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
H A DMockedVehicleHal.java125 public synchronized void get(VehiclePropValue requestedPropValue, getCallback cb) { argument
126 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(requestedPropValue.prop);
130 cb.onValues(StatusCode.OK, handler.onPropertyGet(requestedPropValue));

Completed in 795 milliseconds