Home
last modified time | relevance | path

Searched refs:propValues (Results 1 – 13 of 13) sorted by relevance

/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/
DAidlMockedVehicleHal.java130 VehiclePropValues propValues = new VehiclePropValues(); in injectEvent() local
131 propValues.payloads = new VehiclePropValue[1]; in injectEvent()
132 propValues.payloads[0] = value; in injectEvent()
133 callback.onPropertyEvent(propValues, /* sharedMemoryCount= */ 0); in injectEvent()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DVehicleHalTest.java616 ArrayList<HalPropValue> propValues = new ArrayList<>();
617 propValues.add(propValue);
620 mVehicleHal.onPropertyEvent(propValues);
636 ArrayList<HalPropValue> propValues = new ArrayList<>();
637 propValues.add(propValue);
640 mVehicleHal.onPropertyEvent(propValues);
641 mVehicleHal.onPropertyEvent(propValues);
659 ArrayList<HalPropValue> propValues = new ArrayList<>();
660 propValues.add(propValue);
662 mVehicleHal.onPropertyEvent(propValues);
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DVehicleStubTest.java1015 VehiclePropValues propValues = new VehiclePropValues(); in testAidlVehicleCallbackOnPropertyEventSmallData() local
1020 propValues.payloads = new VehiclePropValue[]{propValue}; in testAidlVehicleCallbackOnPropertyEventSmallData()
1024 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventSmallData()
1034 VehiclePropValues propValues = new VehiclePropValues(); in testAidlVehicleCallbackOnPropertyEventLargeData() local
1041 propValues.payloads = new VehiclePropValue[]{propValue}; in testAidlVehicleCallbackOnPropertyEventLargeData()
1042 propValues = (VehiclePropValues) LargeParcelable.toLargeParcelable(propValues, () -> { in testAidlVehicleCallbackOnPropertyEventLargeData()
1047 assertThat(propValues.sharedMemoryFd).isNotNull(); in testAidlVehicleCallbackOnPropertyEventLargeData()
1052 aidlCallback.onPropertyEvent(propValues, /*sharedMemoryFileCount=*/0); in testAidlVehicleCallbackOnPropertyEventLargeData()
/packages/services/Car/service/src/com/android/car/
DAidlVehicleStub.java366 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() argument
369 LargeParcelable.reconstructStableAIDLParcelable(propValues, in onPropertyEvent()
471 public void onPropertyEvent(VehiclePropValues propValues, int sharedMemoryFileCount) in onPropertyEvent() argument
DHidlVehicleStub.java273 public void onPropertyEvent(ArrayList<VehiclePropValue> propValues) { in onPropertyEvent() argument
275 for (VehiclePropValue value : propValues) { in onPropertyEvent()
/packages/services/Car/service/src/com/android/car/hal/
DHalClient.java274 public void onPropertyEvent(ArrayList<HalPropValue> propValues) { in onPropertyEvent() argument
276 mHandler, CallbackHandler.MSG_ON_PROPERTY_EVENT, propValues)); in onPropertyEvent()
DVehicleHal.java683 public void onPropertyEvent(ArrayList<HalPropValue> propValues) { in onPropertyEvent() argument
685 for (int i = 0; i < propValues.size(); i++) { in onPropertyEvent()
686 HalPropValue v = propValues.get(i); in onPropertyEvent()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java149 public void updateValues(boolean triggerListeners, CarPropertyValue<?>... propValues) { in updateValues() argument
150 for (CarPropertyValue v : propValues) { in updateValues()
DCarPropertyController.java49 void updateValues(boolean triggerListeners, CarPropertyValue<?>... propValues); in updateValues() argument
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp290 Return<void> SubscriptionCallback::onPropertyEvent(const hidl_vec<VehiclePropValue>& propValues) { in onPropertyEvent() argument
292 for (const VehiclePropValue& value : propValues) { in onPropertyEvent()
/packages/services/Car/cpp/vhal/client/include/
DHidlVhalClient.h132 hardware::automotive::vehicle::V2_0::VehiclePropValue>& propValues) override;
/packages/services/Car/cpp/vhal/client/test/
DAidlVhalClientTest.cpp191 VehiclePropValues propValues = { in triggerOnPropertyEvent() local
194 mSubscriptionCallback->onPropertyEvent(propValues, /*sharedMemoryCount=*/0); in triggerOnPropertyEvent()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.cpp1095 const std::vector<std::unique_ptr<IHalPropValue>>& propValues) { in onPropertyEvent() argument
1096 for (const auto& value : propValues) { in onPropertyEvent()