Home
last modified time | relevance | path

Searched refs:getHalPropValue (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DVehicleStub.java80 public HalPropValue getHalPropValue() { in getHalPropValue() method in VehicleStub.AsyncGetSetRequest
113 public HalPropValue getHalPropValue() { in getHalPropValue() method in VehicleStub.GetVehicleStubAsyncResult
DHidlVehicleStub.java241 halPropValue = get(getVehicleStubAsyncRequest.getHalPropValue()); in getAsync()
284 set(setVehicleStubAsyncRequest.getHalPropValue()); in setAsync()
DAidlVehicleStub.java1095 vehicleStubRequest.getHalPropValue()); in prepareAndConvertAsyncRequests()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java646 HalPropValue propValue = asyncResult.getHalPropValue(); in testGetAsyncMethodForSingleValue()
671 HalPropValue propValue = asyncResult.getHalPropValue(); in testGetAsyncMethodForSingleValueNoReadPermissionError()
693 expect.that(asyncResult.getHalPropValue()).isNull(); in testGetAsyncForPropNotAvailable()
713 expect.that(asyncResult.getHalPropValue()).isNull(); in testGetAsyncForSpecialPropInternalError()
742 HalPropValue propValue1 = asyncResult1.getHalPropValue(); in testGetAsyncForMultipleGetRequestsSuccessAndError()
748 HalPropValue propValue2 = asyncResult2.getHalPropValue(); in testGetAsyncForMultipleGetRequestsSuccessAndError()
1008 HalPropValue oldPropValue = getOldAsyncResult.get(0).getHalPropValue(); in testSetAsyncForSingleProp()
1019 HalPropValue updatedPropValue = newAsyncGetResult.getHalPropValue(); in testSetAsyncForSingleProp()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java378 assertThat(gotRequest.getHalPropValue().getPropId()).isEqualTo(HVAC_TEMPERATURE_SET); in testGetCarPropertyValuesAsync()
404 assertThat(gotRequest0.getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleRequests()
406 assertThat(gotRequest0.getHalPropValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_multipleRequests()
410 assertThat(gotRequest1.getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleRequests()
412 assertThat(gotRequest1.getHalPropValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_multipleRequests()
763 assertThat(getVehicleHalRequests.get(0).getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleResultsSameCall()
767 assertThat(getVehicleHalRequests.get(1).getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleResultsSameCall()
813 assertThat(getVehicleHalRequests.get(0).getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleResultsDifferentCalls()
817 assertThat(getVehicleHalRequests.get(1).getHalPropValue().getPropId()).isEqualTo( in testGetCarPropertyValuesAsync_multipleResultsDifferentCalls()
872 assertThat(gotRequest.getHalPropValue().getPropId()).isEqualTo(HVAC_TEMPERATURE_SET); in testSetCarPropertyValuesAsync()
[all …]
DVehicleHalTest.java335 assertThat(captor.getValue().get(0).getHalPropValue()).isEqualTo(mHalPropValue);
351 assertThat(captor.getValue().get(0).getHalPropValue()).isEqualTo(mHalPropValue);
353 assertThat(captor.getValue().get(1).getHalPropValue()).isEqualTo(mHalPropValue);
364 assertThat(captor.getValue().get(0).getHalPropValue()).isEqualTo(mHalPropValue);
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DHidlVehicleStubUnitTest.java408 assertThat(argumentCaptor.getValue().get(0).getHalPropValue()).isEqualTo(value); in testGetAsync()
494 assertThat(callResult1.get(0).getHalPropValue()).isEqualTo(newTestValue); in testGetAsyncOneOkayResultOneNoValue()
DAidlVehicleStubUnitTest.java436 assertThat(argumentCaptor.getValue().get(0).getHalPropValue()).isEqualTo(value); in testGetAsyncAidl()
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java197 HalPropValue halPropValue = get(request.getHalPropValue()); in getAsync()
241 set(setRequest.getHalPropValue()); in setAsync()
/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalService.java624 HalPropValue halPropValue = getVehicleStubAsyncResult.getHalPropValue(); in parseGetAsyncResults()