Home
last modified time | relevance | path

Searched refs:setAsync (Results 1 – 11 of 11) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java869 verify(mVehicleHal).setAsync(captor.capture(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync()
927 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_noWaitForPropertyUpdate()
965 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_noWaitForPropertyUpdateWithMultipleAreaRequests()
1014 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_mixWaitNoWaitForPropertyUpdate()
1092 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_beforeSetResult()
1141 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_afterSetResult()
1190 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_retry()
1213 verify(mVehicleHal, timeout(1000).times(2)).setAsync(any(), any()); in testSetCarPropertyValuesAsync_initValueSameAsTargetValue_retry()
1243 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_initValueDiffTargetValue_timeout()
1288 }).when(mVehicleHal).setAsync(anyList(), any(VehicleStubCallbackInterface.class)); in testSetCarPropertyValuesAsync_errorSetResultAfterTargetInitValueResult()
[all …]
DVehicleHalTest.java358 mVehicleHal.setAsync(List.of(mSetVehicleRequest), mSetVehicleStubAsyncCallback);
361 verify(mVehicle).setAsync(captor.capture(),
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DAidlVehicleStubUnitTest.java1088 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsync()
1104 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncRemoteException()
1121 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionTryAgain()
1138 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailable()
1155 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailableDisabled()
1172 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailableSpeedLow()
1190 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailableSpeedHigh()
1208 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailablePoorVisibility()
1225 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailableSafety()
1243 mAidlVehicleStub.setAsync(List.of(request), mAsyncCallback); in testSetAsyncServiceSpecificExceptionVendorErrorCode()
DHidlVehicleStubUnitTest.java535 mHidlVehicleStub.setAsync(List.of(getVehicleStubAsyncRequest), mAsyncCallback); in testSetAsync()
552 mHidlVehicleStub.setAsync(List.of(getVehicleStubAsyncRequest), mAsyncCallback); in testSetAsyncRemoteException()
570 mHidlVehicleStub.setAsync(List.of(getVehicleStubAsyncRequest), mAsyncCallback); in testSetAsyncServiceSpecificExceptionTryAgain()
588 mHidlVehicleStub.setAsync(List.of(getVehicleStubAsyncRequest), mAsyncCallback); in testSetAsyncServiceSpecificExceptionNotAvailable()
606 mHidlVehicleStub.setAsync(List.of(getVehicleStubAsyncRequest), mAsyncCallback); in testSetAsyncServiceSpecificExceptionInternal()
/packages/services/Car/service/src/com/android/car/
DVehicleStub.java237 public abstract void setAsync(List<AsyncGetSetRequest> setVehicleStubAsyncRequests, in setAsync() method in VehicleStub
DHidlVehicleStub.java277 public void setAsync(List<AsyncGetSetRequest> setVehicleStubAsyncRequests, in setAsync() method in HidlVehicleStub
DAidlVehicleStub.java353 public void setAsync(List<AsyncGetSetRequest> setVehicleStubAsyncRequests, in setAsync() method in AidlVehicleStub
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java1011 fakeVehicleStub.setAsync(List.of(request), mCallback); in testSetAsyncForSingleProp()
1048 fakeVehicleStub.setAsync(List.of(request), mCallback); in testSetAsyncGlobalPropWithAreaIdSetValueOutOfRange()
1071 fakeVehicleStub.setAsync(List.of(request), mCallback); in testSetAsyncForSpecialPropRemoteException()
1106 fakeVehicleStub.setAsync(List.of(request1, request2), mCallback); in testSetAsyncOnMultipleRequests()
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHal.java1761 public void setAsync(List<VehicleStub.AsyncGetSetRequest> setVehicleStubAsyncRequests, in setAsync() method in VehicleHal
1763 mVehicleStub.setAsync(setVehicleStubAsyncRequests, setVehicleStubAsyncCallback); in setAsync()
DPropertyHalService.java568 mVehicleHal.setAsync(vehicleStubAsyncSetRequests, this); in retryIfNotExpired()
1702 mVehicleHal.setAsync(vehicleStubRequests, callback); in sendVehicleStubRequests()
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java233 public void setAsync(List<AsyncGetSetRequest> setVehicleStubAsyncRequests, in setAsync() method in FakeVehicleStub