Searched refs:requestedPropValue (Results 1 – 8 of 8) sorted by relevance
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarVendorExtensionManagerTest.java | 343 VehiclePropValue requestedPropValue = request.prop; in getValues() local 344 int propId = requestedPropValue.prop; in getValues() 351 resultValue.areaId = requestedPropValue.areaId; in getValues() 362 resultValue = requestedPropValue; in getValues() 392 VehiclePropValue requestedPropValue = request.value; in setValues() local 393 if (requestedPropValue.prop == CUSTOM_BYTES_PROP_ID_1) { in setValues() 394 mBytes = requestedPropValue.value.byteValues.clone(); in setValues() 397 mValues.put(requestedPropValue.prop, requestedPropValue); in setValues()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | AidlMockedVehicleHal.java | 247 VehiclePropValue requestedPropValue = request.prop; in getValues() local 249 requestedPropValue.prop); in getValues() 254 VehiclePropValue prop = handler.onPropertyGet(requestedPropValue); in getValues() 286 VehiclePropValue requestedPropValue = request.value; in setValues() local 288 requestedPropValue.prop); in setValues() 293 requestedPropValue.timestamp = SystemClock.elapsedRealtimeNanos(); in setValues() 294 boolean generateEvent = handler.onPropertySet2(requestedPropValue); in setValues() 296 int propId = requestedPropValue.prop; in setValues() 303 subCallbackToValues.get(subCallback).add(requestedPropValue); in setValues()
|
D | HidlMockedVehicleHal.java | 191 public void get(VehiclePropValue requestedPropValue, getCallback cb) { in get() argument 193 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(requestedPropValue.prop); in get() 198 VehiclePropValue prop = handler.onPropertyGet(requestedPropValue); in get()
|
/packages/services/Car/service/src/com/android/car/ |
D | AidlVehicleStub.java | 301 public HalPropValue get(HalPropValue requestedPropValue) in get() argument 304 HalPropValue halPropValue = getOrSetSync(requestedPropValue, in get() 309 "failed to get value for " + printPropIdAreaId(requestedPropValue)); in get() 329 public void set(HalPropValue requestedPropValue) throws RemoteException, in set() argument 332 getOrSetSync(requestedPropValue, mPendingSyncSetValueRequestPool, in set() 337 "failed to set value for " + printPropIdAreaId(requestedPropValue)); in set() 974 HalPropValue requestedPropValue, in getOrSetSync() argument 986 requestsHandler.addVhalRequest(vhalRequestId, requestedPropValue); in getOrSetSync() 1006 "get/set value request timeout for: " + printPropIdAreaId(requestedPropValue)); in getOrSetSync()
|
D | HidlVehicleStub.java | 208 public HalPropValue get(HalPropValue requestedPropValue) in get() argument 210 VehiclePropValue hidlPropValue = (VehiclePropValue) requestedPropValue.toVehiclePropValue(); in get()
|
D | VehicleStub.java | 347 public abstract HalPropValue get(HalPropValue requestedPropValue) in get() argument
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 354 public HalPropValue get(HalPropValue requestedPropValue) throws RemoteException, in get() argument 356 int propId = requestedPropValue.getPropId(); in get() 358 int areaId = isPropertyGlobal(propId) ? AREA_ID_GLOBAL : requestedPropValue.getAreaId(); in get() 373 return mRealVehicle.get(requestedPropValue); in get()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | VehicleHal.java | 1044 public <T> T get(Class clazz, HalPropValue requestedPropValue) in get() argument 1047 propValue = getValueWithRetry(requestedPropValue); in get() 1119 public HalPropValue get(HalPropValue requestedPropValue) in get() argument 1121 return getValueWithRetry(requestedPropValue); in get()
|