/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStubUnitTest.java | 1155 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 …]
|
D | SimulationVehicleStubUnitTest.java | 258 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/ |
D | VehicleCtrlFragment.java | 68 onPropertyEvent(value); 117 public void onPropertyEvent(CarPropertyValue prop) { in onPropertyEvent() method in VehicleCtrlFragment
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | VehicleHalCallback.java | 32 void onPropertyEvent(List<HalPropValue> values); in onPropertyEvent() method
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 343 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()
|
D | SimulationVehicleStub.java | 306 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/ |
D | EvsVehicleListener.h | 34 void onPropertyEvent([[maybe_unused]] const std::vector< in onPropertyEvent() function
|
/packages/services/Car/service/src/com/android/car/ |
D | HidlVehicleStub.java | 359 public void onPropertyEvent(ArrayList<VehiclePropValue> propValues) { in onPropertyEvent() method in HidlVehicleStub.HidlSubscriptionClient 364 mCallback.onPropertyEvent(values); in onPropertyEvent()
|
D | AidlVehicleStub.java | 731 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/ |
D | HidlVhalClient.cpp | 327 Return<void> SubscriptionCallback::onPropertyEvent(const hidl_vec<VehiclePropValue>& propValues) { in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionCallback 333 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
|
D | AidlVhalClient.cpp | 628 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/ |
D | AidlVhalClient.h | 232 ndk::ScopedAStatus onPropertyEvent( 298 ndk::ScopedAStatus onPropertyEvent(
|
D | HidlVhalClient.h | 138 android::hardware::Return<void> onPropertyEvent(
|
D | IVhalClient.h | 53 virtual void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) = 0;
|
/packages/services/Car/tests/CarServiceTest/dep/src/com/android/car/hal/test/ |
D | AidlMockedVehicleHal.java | 172 callback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in injectEvent() 336 subCallback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in setValues()
|
D | HidlMockedVehicleHal.java | 134 callback.onPropertyEvent(values); in injectEvent()
|
/packages/services/Car/cpp/vhal/client/test/ |
D | HidlVhalClientTest.cpp | 114 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
|
D | AidlVhalClientTest.cpp | 220 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/ |
D | VehicleHalTest.java | 1206 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/ |
D | HidlVehicleStubUnitTest.java | 643 hidlCallback.onPropertyEvent(new ArrayList<VehiclePropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent() 646 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent()
|
D | AidlVehicleStubUnitTest.java | 1309 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/ |
D | WatchdogProcessService.h | 241 void onPropertyEvent(const std::vector<
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.h | 241 void onPropertyEvent(const std::vector<
|
/packages/services/Car/cpp/power/server/src/ |
D | CarPowerPolicyServer.h | 79 void onPropertyEvent(const std::vector<
|
/packages/services/Car/cpp/watchdog/stable_server/tests/ |
D | WatchdogProcessServiceTest.cpp | 497 callback->onPropertyEvent( in updateVhalHeartBeat()
|