Home
last modified time | relevance | path

Searched refs:onRequestsTimeout (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/car-lib/src/com/android/car/internal/
DLongPendingRequestPool.java73 mTimeoutCallback.onRequestsTimeout(requestIdsCopy); in handleMessage()
91 void onRequestsTimeout(List<Long> requestIds); in onRequestsTimeout() method
/packages/services/Car/service/src/com/android/car/
DVehicleStub.java225 public abstract void onRequestsTimeout(List<Integer> serviceRequestIds); in onRequestsTimeout() method in VehicleStub.VehicleStubCallbackInterface
DAidlVehicleStub.java421 public void onRequestsTimeout(List<Long> vhalRequestIds) { in onRequestsTimeout() method in AidlVehicleStub.PendingAsyncRequestPool.AsyncRequestTimeoutCallback
443 serviceRequestIdsByCallback.keyAt(i).onRequestsTimeout( in onRequestsTimeout()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/
DPendingRequestPoolUnitTest.java66 public void onRequestsTimeout(List<Long> requestIds) { in onRequestsTimeout() method in PendingRequestPoolUnitTest.LongTestTimeoutCallback
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DAidlVehicleStubUnitTest.java722 verify(mAsyncCallback, timeout(1000)).onRequestsTimeout(List.of(0, 1)); in testGetAsyncAidlTimeout()
762 verify(mAsyncCallback, after(500).never()).onRequestsTimeout(any()); in testGetAsyncAidlTimeoutMustNotTiggerAfterRequestFinished()
805 verify(mAsyncCallback, timeout(1000)).onRequestsTimeout(List.of(1)); in testGetAsyncAidlOneRequestTimeoutOneFinish()
840 verify(mAsyncCallback, never()).onRequestsTimeout(any()); in testCancelAsyncGetRequests()
/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalService.java426 public void onRequestsTimeout(List<Long> serviceRequestIds) { in onRequestsTimeout() method in PropertyHalService.AsyncRequestTimeoutCallback
448 callbackToRequestIds.keyAt(i).onRequestsTimeout(callbackToRequestIds.valueAt(i)); in onRequestsTimeout()
853 public void onRequestsTimeout(List<Integer> serviceRequestIds) { in onRequestsTimeout() method in PropertyHalService.VehicleStubCallback
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java619 getVehicleStubAsyncCallback.onRequestsTimeout(List.of( in testGetCarPropertyValuesAsync_timeoutFromVehicleStub()
2107 callback.onRequestsTimeout( in testSetCarPropertyValuesAsync_timeoutBeforePropertyUpdateEvent()
2212 callback.onRequestsTimeout(List.of(request.getServiceRequestId())); in testOnSetAsyncResults_TimeoutFromVehicleStub()