/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStubUnitTest.java | 1146 verify(callback, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropOneClientSubscribeOnePropManyTime() 1190 verify(callback, times(2)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropOneClientSubscribeTwoProp() 1232 verify(callback, times(2)).onPropertyEvent(any(ArrayList.class)); in testSubscribeAreaPropertyWithEmptyOptionsAreaIds() 1263 verify(callback1, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropTwoClientSubscribeSameProp() 1264 verify(callback2, times(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeOnChangePropTwoClientSubscribeSameProp() 1289 verify(callback, timeout(100).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousProp() 1317 verify(callback, timeout(100).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropDifferentRate() 1322 verify(callback, timeout(200).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropDifferentRate() 1346 verify(callback, timeout(100).atLeast(5)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropRateTooLarge() 1370 verify(callback, timeout(100).atLeast(1)).onPropertyEvent(any(ArrayList.class)); in testSubscribeContinuousPropRateTooSmall() [all …]
|
/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 | 30 void onPropertyEvent(ArrayList<HalPropValue> values); in onPropertyEvent() method
|
D | VehicleHal.java | 1208 public void onPropertyEvent(ArrayList<HalPropValue> propValues) { in onPropertyEvent() method in VehicleHal
|
/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/cpp/vhal/client/src/ |
D | HidlVhalClient.cpp | 288 Return<void> SubscriptionCallback::onPropertyEvent(const hidl_vec<VehiclePropValue>& propValues) { in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionCallback 294 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
|
D | AidlVhalClient.cpp | 508 ScopedAStatus GetSetValueClient::onPropertyEvent([[maybe_unused]] const VehiclePropValues&, in onPropertyEvent() function in android::frameworks::automotive::vhal::GetSetValueClient 609 ScopedAStatus SubscriptionVehicleCallback::onPropertyEvent( in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionVehicleCallback 628 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
|
/packages/services/Car/cpp/vhal/client/include/ |
D | AidlVhalClient.h | 183 ndk::ScopedAStatus onPropertyEvent( 246 ndk::ScopedAStatus onPropertyEvent(
|
D | HidlVhalClient.h | 128 android::hardware::Return<void> onPropertyEvent(
|
D | IVhalClient.h | 47 virtual void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) = 0;
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 440 clients.forEach(c -> c.onPropertyEvent(updatedValue)); in set() 476 public void onPropertyEvent(HalPropValue value) { in onPropertyEvent() method in FakeVehicleStub.FakeVhalSubscriptionClient 477 mCallBack.onPropertyEvent(new ArrayList<>(List.of(value))); in onPropertyEvent() 529 mClient.onPropertyEvent(updateTimeStamp(mPropId, mAreaId)); in run()
|
/packages/services/Car/service/src/com/android/car/ |
D | HidlVehicleStub.java | 368 public void onPropertyEvent(ArrayList<VehiclePropValue> propValues) { in onPropertyEvent() method in HidlVehicleStub.HidlSubscriptionClient 373 mCallback.onPropertyEvent(values); in onPropertyEvent()
|
D | AidlVehicleStub.java | 615 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() method in AidlVehicleStub.AidlSubscriptionClient 624 mCallback.onPropertyEvent(values); in onPropertyEvent() 731 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() method in AidlVehicleStub.GetSetValuesCallback
|
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | AidlMockedVehicleHal.java | 157 callback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in injectEvent() 323 subCallback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in setValues()
|
D | HidlMockedVehicleHal.java | 137 callback.onPropertyEvent(values); in injectEvent()
|
/packages/services/Car/cpp/vhal/client/test/ |
D | HidlVhalClientTest.cpp | 106 mSubscribedCallback->onPropertyEvent(values); in triggerOnPropertyEvent() 127 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 | 197 mSubscriptionCallback->onPropertyEvent(propValues, /*sharedMemoryCount=*/0); in triggerOnPropertyEvent() 228 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/ |
D | AidlVehicleStubUnitTest.java | 1267 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventSmallData() 1269 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList( in testAidlVehicleCallbackOnPropertyEventSmallData() 1296 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventLargeData() 1298 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList(halPropValue))); in testAidlVehicleCallbackOnPropertyEventLargeData()
|
D | HidlVehicleStubUnitTest.java | 640 hidlCallback.onPropertyEvent(new ArrayList<VehiclePropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent() 643 verify(callback).onPropertyEvent(new ArrayList<HalPropValue>(Arrays.asList( in testHidlVehicleCallbackOnPropertyEvent()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | VehicleHalTest.java | 1192 mVehicleHal.onPropertyEvent(propValues); 1212 mVehicleHal.onPropertyEvent(propValues); 1213 mVehicleHal.onPropertyEvent(propValues); 1237 mVehicleHal.onPropertyEvent(propValues);
|
/packages/services/Car/cpp/powerpolicy/server/src/ |
D | CarPowerPolicyServer.h | 74 void onPropertyEvent(const std::vector<
|
D | CarPowerPolicyServer.cpp | 142 void PropertyChangeListener::onPropertyEvent( in onPropertyEvent() function in android::frameworks::automotive::powerpolicy::PropertyChangeListener
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.h | 228 void onPropertyEvent(const std::vector<
|
D | WatchdogProcessService.cpp | 1404 void WatchdogProcessService::PropertyChangeListener::onPropertyEvent( in onPropertyEvent() function in android::automotive::watchdog::WatchdogProcessService::PropertyChangeListener
|