/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | AidlMockedVehicleHal.java | 130 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/ |
D | VehicleHalTest.java | 616 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/ |
D | VehicleStubTest.java | 1015 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/ |
D | AidlVehicleStub.java | 366 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
|
D | HidlVehicleStub.java | 273 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/ |
D | HalClient.java | 274 public void onPropertyEvent(ArrayList<HalPropValue> propValues) { in onPropertyEvent() argument 276 mHandler, CallbackHandler.MSG_ON_PROPERTY_EVENT, propValues)); in onPropertyEvent()
|
D | VehicleHal.java | 683 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/ |
D | FakeCarPropertyService.java | 149 public void updateValues(boolean triggerListeners, CarPropertyValue<?>... propValues) { in updateValues() argument 150 for (CarPropertyValue v : propValues) { in updateValues()
|
D | CarPropertyController.java | 49 void updateValues(boolean triggerListeners, CarPropertyValue<?>... propValues); in updateValues() argument
|
/packages/services/Car/cpp/vhal/client/src/ |
D | HidlVhalClient.cpp | 290 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/ |
D | HidlVhalClient.h | 132 hardware::automotive::vehicle::V2_0::VehiclePropValue>& propValues) override;
|
/packages/services/Car/cpp/vhal/client/test/ |
D | AidlVhalClientTest.cpp | 191 VehiclePropValues propValues = { in triggerOnPropertyEvent() local 194 mSubscriptionCallback->onPropertyEvent(propValues, /*sharedMemoryCount=*/0); in triggerOnPropertyEvent()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.cpp | 1095 const std::vector<std::unique_ptr<IHalPropValue>>& propValues) { in onPropertyEvent() argument 1096 for (const auto& value : propValues) { in onPropertyEvent()
|