Searched defs:propValue (Results 1 - 6 of 6) sorted by relevance

/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
H A DVehiclePropValueBuilder.java31 public static VehiclePropValueBuilder newBuilder(VehiclePropValue propValue) { argument
32 return new VehiclePropValueBuilder(propValue);
40 private VehiclePropValueBuilder(VehiclePropValue propValue) { argument
41 mPropValue = clone(propValue);
44 private VehiclePropValue clone(VehiclePropValue propValue) { argument
47 newValue.prop = propValue.prop;
48 newValue.areaId = propValue.areaId;
49 newValue.timestamp = propValue.timestamp;
50 newValue.value.stringValue = propValue.value.stringValue;
51 newValue.value.int32Values.addAll(propValue
[all...]
/packages/services/Car/tests/carservice_test/src/com/android/car/
H A DCarVendorExtensionManagerTest.java246 public synchronized int set(VehiclePropValue propValue) { argument
247 if (propValue.prop == CUSTOM_BYTES_PROP_ID_1) {
248 mBytes = toByteArray(propValue.value.bytes);
251 mValues.put(propValue.prop, propValue);
/packages/services/Car/service/src/com/android/car/hal/
H A DHalClient.java80 public void setValue(VehiclePropValue propValue) throws PropertyTimeoutException { argument
83 return mVehicle.set(propValue);
93 propValue.prop, propValue.areaId));
97 throw new PropertyTimeoutException(propValue.prop);
103 + "code: %d", propValue.prop, propValue.areaId, status));
111 valueWrapper.object = res.propValue;
139 (status, propValue) -> {
141 result.propValue
178 VehiclePropValue propValue; field in class:HalClient.ValueResult
244 onPropertySet(VehiclePropValue propValue) argument
[all...]
H A DVehicleHal.java323 VehiclePropValue propValue = new VehiclePropValue();
324 propValue.prop = propertyId;
325 propValue.areaId = areaId;
326 return mHalClient.getValue(propValue);
340 VehiclePropValue propValue;
341 propValue = mHalClient.getValue(requestedPropValue);
344 return (T) propValue.value.int32Values.get(0);
346 return (T) Boolean.valueOf(propValue.value.int32Values.get(0) == 1);
348 return (T) propValue.value.floatValues.get(0);
350 Integer[] intArray = new Integer[propValue
390 set(VehiclePropValue propValue) argument
[all...]
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
H A DMockedVehicleHal.java167 public synchronized int set(VehiclePropValue propValue) { argument
168 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(propValue.prop);
172 handler.onPropertySet(propValue);
/packages/apps/Car/Hvac/src/com/android/car/hvac/
H A DHvacController.java65 public void onPassengerTemperatureChange(CarPropertyValue propValue) { argument
68 public void onDriverTemperatureChange(CarPropertyValue propValue) { argument

Completed in 124 milliseconds