Home
last modified time | relevance | path

Searched refs:getAndDispatchInitialValue (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/property/
DICarProperty.aidl92 void getAndDispatchInitialValue(in List<PropIdAreaId> propIdAreaIds, in getAndDispatchInitialValue() method
DCarPropertyManager.java1659 mService.getAndDispatchInitialValue(getInitialValuePropIdAreaIds, in subscribePropertyEventsInternal()
/packages/services/Car/libs/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java171 public void getAndDispatchInitialValue(List<PropIdAreaId> propIdAreaIds, in getAndDispatchInitialValue() method in FakeCarPropertyService
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarPropertyServiceUnitTest.java2048 mService.getAndDispatchInitialValue(List.of(propIdAreaId1, propIdAreaId2), mockHandler); in testGetAndDispatchInitialValue()
2075 mService.getAndDispatchInitialValue(List.of(propIdAreaId), mockHandler); in testGetAndDispatchInitialValue_mustNotFilterEvents()
2076 mService.getAndDispatchInitialValue(List.of(propIdAreaId), mockHandler); in testGetAndDispatchInitialValue_mustNotFilterEvents()
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyManagerUnitTest.java2143 verify(mICarProperty, never()).getAndDispatchInitialValue(any(), any()); in testSubscribePropertyEvents_doNotSendGetInitialValueRequest_flagDisabled()
2158 verify(mICarProperty, never()).getAndDispatchInitialValue(any(), any()); in testSubscribePropertyEvents_doNotSendGetInitialValueRequest_legacyClient()
2176 verify(mICarProperty).getAndDispatchInitialValue(eq(List.of(propIdAreaId)), in testSubscribePropertyEvents_sendGetInitialValueRequest_sameCallback()
2198 verify(mICarProperty).getAndDispatchInitialValue(eq(List.of(propIdAreaId)), in testSubscribePropertyEvents_sendGetInitialValueRequest_differentCallback()
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java614 public void getAndDispatchInitialValue(List<PropIdAreaId> propIdAreaIds, in getAndDispatchInitialValue() method in CarPropertyService