Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java1146 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/
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.java30 void onPropertyEvent(ArrayList<HalPropValue> values); in onPropertyEvent() method
DVehicleHal.java1208 public void onPropertyEvent(ArrayList<HalPropValue> propValues) { in onPropertyEvent() method in VehicleHal
/packages/services/Car/cpp/evs/apps/default/inc/
DEvsVehicleListener.h34 void onPropertyEvent([[maybe_unused]] const std::vector< in onPropertyEvent() function
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp288 Return<void> SubscriptionCallback::onPropertyEvent(const hidl_vec<VehiclePropValue>& propValues) { in onPropertyEvent() function in android::frameworks::automotive::vhal::SubscriptionCallback
294 mCallback->onPropertyEvent(halPropValues); in onPropertyEvent()
DAidlVhalClient.cpp508 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/
DAidlVhalClient.h183 ndk::ScopedAStatus onPropertyEvent(
246 ndk::ScopedAStatus onPropertyEvent(
DHidlVhalClient.h128 android::hardware::Return<void> onPropertyEvent(
DIVhalClient.h47 virtual void onPropertyEvent(const std::vector<std::unique_ptr<IHalPropValue>>& values) = 0;
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java440 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/
DHidlVehicleStub.java368 public void onPropertyEvent(ArrayList<VehiclePropValue> propValues) { in onPropertyEvent() method in HidlVehicleStub.HidlSubscriptionClient
373 mCallback.onPropertyEvent(values); in onPropertyEvent()
DAidlVehicleStub.java615 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/
DAidlMockedVehicleHal.java157 callback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in injectEvent()
323 subCallback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in setValues()
DHidlMockedVehicleHal.java137 callback.onPropertyEvent(values); in injectEvent()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp106 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
DAidlVhalClientTest.cpp197 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/
DAidlVehicleStubUnitTest.java1267 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()
DHidlVehicleStubUnitTest.java640 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/
DVehicleHalTest.java1192 mVehicleHal.onPropertyEvent(propValues);
1212 mVehicleHal.onPropertyEvent(propValues);
1213 mVehicleHal.onPropertyEvent(propValues);
1237 mVehicleHal.onPropertyEvent(propValues);
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.h74 void onPropertyEvent(const std::vector<
DCarPowerPolicyServer.cpp142 void PropertyChangeListener::onPropertyEvent( in onPropertyEvent() function in android::frameworks::automotive::powerpolicy::PropertyChangeListener
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.h228 void onPropertyEvent(const std::vector<
DWatchdogProcessService.cpp1404 void WatchdogProcessService::PropertyChangeListener::onPropertyEvent( in onPropertyEvent() function in android::automotive::watchdog::WatchdogProcessService::PropertyChangeListener