Home
last modified time | relevance | path

Searched refs:onPropertyEvent (Results 1 – 25 of 30) sorted by relevance

12

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java1155 verify(callback, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropOneClientSubscribeOnePropManyTime()
1199 verify(callback, times(2)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropOneClientSubscribeTwoProp()
1241 verify(callback, times(2)).onPropertyEvent(any(ArrayList.class)); in testSubscribeAreaPropertyWithEmptyOptionsAreaIds()
1272 verify(callback1, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropTwoClientSubscribeSameProp()
1273 verify(callback2, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropTwoClientSubscribeSameProp()
1300 verify(callback, timeout(200).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousProp()
1332 verify(callback, timeout(200).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropDifferentRate()
1338 verify(callback, timeout(400).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropDifferentRate()
1367 verify(callback, timeout(200).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropRateTooLarge()
1396 verify(callback, timeout(2000).atLeast(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropRateTooSmall()
[all …]
DSimulationVehicleStubUnitTest.java258 callback.onPropertyEvent(halPropValues); in testOnPropertyEvent_verifyOnPropertyEventIsNotCalled()
260 verify(mVehicleHalCallback, never()).onPropertyEvent(any()); in testOnPropertyEvent_verifyOnPropertyEventIsNotCalled()
274 callback.onPropertyEvent(halPropValues); in testOnPropertyEvent_verifyOnPropertyEventIsCalled()
277 verify(mVehicleHalCallback).onPropertyEvent(listCaptor.capture()); in testOnPropertyEvent_verifyOnPropertyEventIsCalled()
758 public void onPropertyEvent(List<HalPropValue> values) { in onPropertyEvent() method in SimulationVehicleStubUnitTest.CountDownVehicleHalCallback
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/vehiclectrl/
DVehicleCtrlFragment.java68 onPropertyEvent(value);
117 public void onPropertyEvent(CarPropertyValue prop) { in onPropertyEvent() method in VehicleCtrlFragment
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHalCallback.java32 void onPropertyEvent(List<HalPropValue> values); in onPropertyEvent() method
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java343 clients.forEach(c -> c.onPropertyEvent(updatedValue)); in set()
365 public void onPropertyEvent(HalPropValue value) { in onPropertyEvent() method in FakeVehicleStub.FakeVhalSubscriptionClient
366 mCallback.onPropertyEvent(new ArrayList<>(List.of(value))); in onPropertyEvent()
430 mClient.onPropertyEvent(updateTimeStamp(mPropId, mAreaId)); in run()
DSimulationVehicleStub.java306 public void onPropertyEvent(List<HalPropValue> values) { in onPropertyEvent() method in SimulationVehicleStub.ReplayingVehicleHalCallback
307 filterAndInvokeCallback(values, HalPropValue::getPropId, mRealCallback::onPropertyEvent, in onPropertyEvent()
/packages/services/Car/cpp/evs/apps/default/inc/
DEvsVehicleListener.h34 void onPropertyEvent([[maybe_unused]] const std::vector< in onPropertyEvent() function
/packages/services/Car/service/src/com/android/car/
DHidlVehicleStub.java359 public void onPropertyEvent(ArrayList<VehiclePropValue> propValues) { in onPropertyEvent() method in HidlVehicleStub.HidlSubscriptionClient
364 mCallback.onPropertyEvent(values); in onPropertyEvent()
DAidlVehicleStub.java731 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() method in AidlVehicleStub.AidlSubscriptionClient
740 mCallback.onPropertyEvent(values); in onPropertyEvent()
912 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() method in AidlVehicleStub.GetSetValuesCallback
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp327 Return<void> SubscriptionCallback::onPropertyEvent(const hidl_vec<VehiclePropValue>& propValues) { in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionCallback
333 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
DAidlVhalClient.cpp628 ScopedAStatus GetSetValueClient::onPropertyEvent([[maybe_unused]] const VehiclePropValues&, in onPropertyEvent() function in android::frameworks::automotive::vhal::GetSetValueClient
770 ScopedAStatus SubscriptionVehicleCallback::onPropertyEvent( in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionVehicleCallback
789 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
/packages/services/Car/cpp/vhal/client/include/
DAidlVhalClient.h232 ndk::ScopedAStatus onPropertyEvent(
298 ndk::ScopedAStatus onPropertyEvent(
DHidlVhalClient.h138 android::hardware::Return<void> onPropertyEvent(
DIVhalClient.h53 virtual void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) = 0;
/packages/services/Car/tests/CarServiceTest/dep/src/com/android/car/hal/test/
DAidlMockedVehicleHal.java172 callback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in injectEvent()
336 subCallback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in setValues()
DHidlMockedVehicleHal.java134 callback.onPropertyEvent(values); in injectEvent()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp114 mSubscribedCallback->onPropertyEvent(values); in triggerOnPropertyEvent()
135 void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) override { in onPropertyEvent() function in android::frameworks::automotive::vhal::hidl_test::MockSubscriptionCallback
DAidlVhalClientTest.cpp220 mSubscriptionCallback->onPropertyEvent(propValues, /*sharedMemoryCount=*/0); in triggerOnPropertyEvent()
253 void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) override { in onPropertyEvent() function in android::frameworks::automotive::vhal::aidl_test::MockSubscriptionCallback
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DVehicleHalTest.java1206 mVehicleHal.onPropertyEvent(propValues);
1227 mVehicleHal.onPropertyEvent(propValues);
1245 mVehicleHal.onPropertyEvent(propValues);
1265 mVehicleHal.onPropertyEvent(propValues);
1283 mVehicleHal.onPropertyEvent(propValues);
1284 mVehicleHal.onPropertyEvent(propValues);
1308 mVehicleHal.onPropertyEvent(propValues);
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DHidlVehicleStubUnitTest.java643 hidlCallback.onPropertyEvent(new ArrayList<VehiclePropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent()
646 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent()
DAidlVehicleStubUnitTest.java1309 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventSmallData()
1311 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList( in testAidlVehicleCallbackOnPropertyEventSmallData()
1339 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventLargeData()
1341 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList(halPropValue))); in testAidlVehicleCallbackOnPropertyEventLargeData()
/packages/services/Car/cpp/watchdog/stable_server/src/
DWatchdogProcessService.h241 void onPropertyEvent(const std::vector<
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.h241 void onPropertyEvent(const std::vector<
/packages/services/Car/cpp/power/server/src/
DCarPowerPolicyServer.h79 void onPropertyEvent(const std::vector<
/packages/services/Car/cpp/watchdog/stable_server/tests/
DWatchdogProcessServiceTest.cpp497 callback->onPropertyEvent( in updateVhalHeartBeat()

12