/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarPropertyEventTest.java | 89 assertThat(eventReadFromParcel.getCarPropertyValue().getAreaId()) in testWriteAndReadEvent() 91 assertThat(eventReadFromParcel.getCarPropertyValue().getPropertyId()) in testWriteAndReadEvent() 93 assertThat(eventReadFromParcel.getCarPropertyValue().getValue()) in testWriteAndReadEvent()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 188 request.getAreaId(), request.getCarPropertyValue()); in copyRequest() 436 assertThat(result.getCarPropertyValue().getValue()).isEqualTo(3); in testGetCarPropertyValuesAsync_staticCacheMultipleRequests() 437 assertThat(result.getCarPropertyValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_staticCacheMultipleRequests() 450 assertThat(cachedResult.getCarPropertyValue().getValue()).isEqualTo(3); in testGetCarPropertyValuesAsync_staticCacheMultipleRequests() 451 assertThat(cachedResult.getCarPropertyValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_staticCacheMultipleRequests() 521 assertThat(result.getCarPropertyValue().getValue()).isEqualTo(SAMPLE_RATE_HZ); in testGetCarPropertyValuesAsync_normalResult() 522 assertThat(result.getCarPropertyValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_normalResult() 560 assertThat(result.getCarPropertyValue().getValue()).isEqualTo(SAMPLE_RATE_HZ); in testGetCarPropertyValuesAsync_retryTwiceAndSucceed() 561 assertThat(result.getCarPropertyValue().getAreaId()).isEqualTo(0); in testGetCarPropertyValuesAsync_retryTwiceAndSucceed() 659 assertThat(result.getCarPropertyValue()).isEqualTo(null); in testGetCarPropertyValuesAsync_errorResult() [all …]
|
/packages/apps/Car/Launcher/app/tests/src/com/android/car/carlauncher/calmmode/ |
D | TemperatureViewModelTest.java | 154 assertNotNull(mTemperatureViewModel.getCarPropertyValue( in testGetCarPropertyValue_notNull() 156 assertNotNull(mTemperatureViewModel.getCarPropertyValue( in testGetCarPropertyValue_notNull()
|
/packages/services/Car/car-lib/src/com/android/car/internal/property/ |
D | CarPropertyEventCallbackController.java | 65 if (!carPropertyValue.equals(carPropertyEvent.getCarPropertyValue())) { in onEvent()
|
D | CarPropertyEventController.java | 160 CarPropertyValue<?> carPropertyValue = carPropertyEvent.getCarPropertyValue(); in getCarPropertyValueIfCallbackRequired()
|
D | GetSetValueResult.java | 111 public @Nullable CarPropertyValue getCarPropertyValue() { in getCarPropertyValue() method in GetSetValueResult
|
D | AsyncPropertyServiceRequest.java | 139 public @Nullable CarPropertyValue getCarPropertyValue() { in getCarPropertyValue() method in AsyncPropertyServiceRequest
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | CarPropertyEvent.java | 58 public CarPropertyValue<?> getCarPropertyValue() { in getCarPropertyValue() method in CarPropertyEvent
|
D | CarPropertyManager.java | 895 CarPropertyValue<?> carPropertyValue = result.getCarPropertyValue(); in onResults() 1059 int propertyId = carPropertyEvent.getCarPropertyValue().getPropertyId(); in CarPropertyManager()
|
/packages/services/Car/service/src/com/android/car/property/ |
D | CarPropertyServiceClient.java | 177 if (!carPropertyValue.equals(event.getCarPropertyValue())) { in onEvent()
|
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/calmmode/ |
D | TemperatureViewModel.java | 87 CarPropertyValue getCarPropertyValue(int propertyId) { in getCarPropertyValue() method in TemperatureViewModel
|
/packages/services/Car/service/src/com/android/car/ |
D | CarNightService.java | 111 CarPropertyValue value = event.getCarPropertyValue(); in onNightModeCarPropertyEventLocked()
|
D | CarPropertyService.java | 935 int propId = event.getCarPropertyValue().getPropertyId(); in onPropertyChange() 936 int areaId = event.getCarPropertyValue().getAreaId(); in onPropertyChange() 1049 CarPropertyValue carPropertyValueToSet = request.getCarPropertyValue(); in setPropertiesAsync()
|
D | CarDrivingStateService.java | 358 CarPropertyValue value = event.getCarPropertyValue(); in handlePropertyEventLocked()
|
D | CarUxRestrictionsManagerService.java | 960 && (event.getCarPropertyValue().getPropertyId() 963 Math.abs((Float) event.getCarPropertyValue().getValue()));
|
/packages/services/Car/service/src/com/android/car/bluetooth/ |
D | BluetoothDeviceConnectionPolicy.java | 171 CarPropertyValue value = event.getCarPropertyValue(); in onSeatOccupancyCarPropertyEvent()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | PropertyHalService.java | 486 getSetValueResult.getCarPropertyValue(), in logAndReturnResults() 689 CarPropertyValue carPropertyValue = result.getCarPropertyValue(); in onGetAsyncResults() 892 .getCarPropertyValue().getValue(); in maybeFinishPendingSetValueRequestLocked() 925 .getCarPropertyValue(); in generateVehicleStubAsyncRequestLocked()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | CarPropertyServiceUnitTest.java | 789 eventList.get(0).getCarPropertyValue()).isEqualTo(speedValue); in testRegisterListenerWithSubscription() 791 eventList.get(1).getCarPropertyValue()).isEqualTo(hvacValue); in testRegisterListenerWithSubscription() 1269 CarPropertyValue actualCarPropertyValue = actualEvent.getCarPropertyValue(); in testOnEventCallback_MustNotHaveDeadLock() 1270 CarPropertyValue expectedCarPropertyValue = expectedEvent.getCarPropertyValue(); in testOnEventCallback_MustNotHaveDeadLock()
|
/packages/services/Car/libs/car-test-lib/src/android/car/testapi/ |
D | FakeCarPropertyService.java | 157 setProperty(asyncPropertyServiceRequest.getCarPropertyValue(), /* listener= */ null); in setPropertiesAsync()
|
/packages/services/Car/service/src/com/android/car/telemetry/publisher/ |
D | VehiclePropertyPublisher.java | 203 CarPropertyValue propValue = event.getCarPropertyValue(); in onVehicleEvent()
|
/packages/services/Car/service/src/com/android/car/evs/ |
D | CarEvsService.java | 1065 CarPropertyValue value = event.getCarPropertyValue(); in handlePropertyEvent()
|
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | CarPropertyManagerUnitTest.java | 1291 CarPropertyValue requestValue = request.getCarPropertyValue(); in testSetPropertiesAsync() 1325 CarPropertyValue requestValue = request.getCarPropertyValue(); in testSetPropertiesAsyncWithTimeout() 1623 assertThat(setPropertyServiceRequest.getCarPropertyValue().getValue()).isEqualTo( in testOnSetValueResult_onSuccess()
|
/packages/services/Car/tests/carservice_unit_test/res/raw/ |
D | car_hidden_apis_release_33.2.txt | 384 android.car.hardware.property CarPropertyEvent CarPropertyValue<?> getCarPropertyValue()
|
D | car_hidden_apis_release_33.1.txt | 384 android.car.hardware.property CarPropertyEvent CarPropertyValue<?> getCarPropertyValue()
|
D | car_hidden_apis.txt | 470 android.car.hardware.property CarPropertyEvent CarPropertyValue<?> getCarPropertyValue()
|