Home
last modified time | relevance | path

Searched refs:onPropertyGet (Results 1 – 16 of 16) sorted by relevance

/packages/services/Car/car-systemtest-lib/src/android/car/test/
DVehicleHalEmulator.java56 VehiclePropValue onPropertyGet(VehiclePropValue value); in onPropertyGet() method
243 return getHalPropertyLocked(value.getProp()).handler.onPropertyGet(value); in handlePropertyGet()
291 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in VehicleHalEmulator.DefaultPropertyHandler
327 public VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in VehicleHalEmulator.HalMock
DCarTestManager.java165 public VehiclePropValueParcelable onPropertyGet(VehiclePropValueParcelable value) { in onPropertyGet() method in CarTestManager.IVehicleNetworkHalMockImpl
170 VehiclePropValue retValue = testManager.getHalMock().onPropertyGet(value.value); in onPropertyGet()
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
DVehicleNetworkMockedTest.java430 VehiclePropValue onPropertyGet(VehiclePropValue property); in onPropertyGet() method
465 public VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in VehicleNetworkMockedTest.VehicleHalMock
471 VehiclePropValue propValue = handler.onPropertyGet(value); in onPropertyGet()
511 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue property) { in onPropertyGet() method in VehicleNetworkMockedTest.DefaultVehiclePropertyHandler
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
DCarEmulator.java171 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarEmulator.AudioFocusPropertyHandler
194 public VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarEmulator.AudioStreamStatePropertyHandler
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
DIVehicleNetworkHalMock.aidl28 VehiclePropValueParcelable onPropertyGet(in VehiclePropValueParcelable value) = 2;
DVehicleNetwork.java59 VehiclePropValue onPropertyGet(VehiclePropValue value); in onPropertyGet() method
668 public VehiclePropValueParcelable onPropertyGet(VehiclePropValueParcelable value) { in onPropertyGet() method in VehicleNetwork.IVehicleNetworkHalMockImpl
673 VehiclePropValue resValue = vehicleNetwork.getHalMock().onPropertyGet(value.value); in onPropertyGet()
/packages/services/Car/libvehiclenetwork/native/
DIVehicleNetworkHalMock.cpp110 virtual status_t onPropertyGet(vehicle_prop_value_t* value) { in onPropertyGet() function in android::BpVehicleNetworkHalMock
234 r = onPropertyGet(&(value.value)); in onTransact()
/packages/services/Car/libvehiclenetwork/include/
DIVehicleNetworkHalMock.h43 virtual status_t onPropertyGet(vehicle_prop_value_t* value) = 0;
/packages/services/Car/tests/carservice_test/src/com/android/car/test/
DCarAudioFocusTest.java59 public VehiclePropValue onPropertyGet(VehiclePropValue value) {
88 public VehiclePropValue onPropertyGet(VehiclePropValue value) {
557 public VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarAudioFocusTest.FocusPropertyHandler
DAudioRoutingPolicyTest.java50 public VehiclePropValue onPropertyGet(VehiclePropValue value) {
DCarRadioManagerTest.java84 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarRadioManagerTest.RadioPresetPropertyHandler
DCarHvacManagerTest.java191 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarHvacManagerTest.HvacPropertyHandler
DCarPowerManagementTest.java187 public synchronized VehiclePropValue onPropertyGet(VehiclePropValue value) { in onPropertyGet() method in CarPowerManagementTest.PowerStatePropertyHandler
/packages/services/Car/tests/libvehiclenetwork-native-test/
DVehicleHalMock.h49 virtual status_t onPropertyGet(vehicle_prop_value_t* /*value*/) { in onPropertyGet() function
DVehicleNetworkAudioHelperTest.cpp71 virtual status_t onPropertyGet(vehicle_prop_value_t* value) { in onPropertyGet() function in android::VehicleHalMockForAudioFocus
/packages/services/Car/vehicle_network_service/
DVehicleNetworkService.cpp514 status_t r = mHalMock->onPropertyGet(data); in getProperty()