/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 21 import static android.car.VehiclePropertyIds.PERF_VEHICLE_SPEED; 158 new AsyncPropertyServiceRequest(REQUEST_ID_2, PERF_VEHICLE_SPEED, /* areaId= */ 0, 159 new CarPropertyValue(PERF_VEHICLE_SPEED, /* areaId= */ 0, SAMPLE_RATE_HZ)); 161 new AsyncPropertyServiceRequest(REQUEST_ID_3, PERF_VEHICLE_SPEED, /* areaId= */ 0, 162 new CarPropertyValue(PERF_VEHICLE_SPEED, /* areaId= */ 0, SAMPLE_RATE_HZ)); 164 new AsyncPropertyServiceRequest(REQUEST_ID_4, PERF_VEHICLE_SPEED, /* areaId= */ 1, 165 new CarPropertyValue(PERF_VEHICLE_SPEED, /* areaId= */ 1, SAMPLE_RATE_HZ)); 167 new AsyncPropertyServiceRequest(REQUEST_ID_5, PERF_VEHICLE_SPEED, /* areaId= */ 2, 168 new CarPropertyValue(PERF_VEHICLE_SPEED, /* areaId= */ 2, SAMPLE_RATE_HZ)); 180 PERF_VEHICLE_SPEED, /* areaId= */ 0, TEST_UPDATE_TIMESTAMP_NANOS, /* status= */ 0, [all …]
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | CarUxRestrictionsManagerServiceTest.java | 442 VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 100f))); in testInitService_NoDeadlockWithCarDrivingStateService() 532 VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 100f))); in testSetUxRChangeBroadcastEnabled_NoDeadlockWithCarDrivingStateService() 600 CarPropertyValue<Float> speed = new CarPropertyValue<>(VehicleProperty.PERF_VEHICLE_SPEED, in setUpMockParkedState() 602 when(mMockCarPropertyService.getPropertySafe(VehicleProperty.PERF_VEHICLE_SPEED, 0)) in setUpMockParkedState() 610 CarPropertyValue<Float> speed = new CarPropertyValue<>(VehicleProperty.PERF_VEHICLE_SPEED, in setUpMockDrivingStateWithFakeSpeed() 612 when(mMockCarPropertyService.getPropertySafe(VehicleProperty.PERF_VEHICLE_SPEED, 0)) in setUpMockDrivingStateWithFakeSpeed()
|
D | CarPropertyServiceUnitTest.java | 113 private static final int SPEED_ID = VehiclePropertyIds.PERF_VEHICLE_SPEED;
|
/packages/services/Car/experimental/tests/experimentalcarservice_unit_test/src/com/android/experimentalcar/ |
D | DriverDistractionExperimentalFeatureServiceTest.java | 639 new CarPropertyValue<>(VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 30.0f)); in testRequiredAwareness_multipleSpeedChanges_emitsSingleEvent() 650 new CarPropertyValue<>(VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 20.0f)); in testRequiredAwareness_multipleSpeedChanges_emitsSingleEvent() 653 new CarPropertyValue<>(VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 40.0f)); in testRequiredAwareness_multipleSpeedChanges_emitsSingleEvent() 688 new CarPropertyValue<>(VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 30.0f)); in setVehicleMoving() 693 new CarPropertyValue<>(VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 0.0f)); in setVehicleStopped()
|
/packages/apps/Car/VoiceControl/src/com/android/car/voicecontrol/actuators/ |
D | CarActuator.java | 134 if (!mCarPropertyManager.isPropertyAvailable(VehiclePropertyIds.PERF_VEHICLE_SPEED, in informSpeed() 140 VehiclePropertyIds.PERF_VEHICLE_SPEED, GLOBAL_AREA_ID); in informSpeed()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarDrivingRestrictionsTest.java | 65 addAidlProperty(VehicleProperty.PERF_VEHICLE_SPEED, AidlVehiclePropValueBuilder in configureMockedHal() 66 .newBuilder(VehicleProperty.PERF_VEHICLE_SPEED) in configureMockedHal() 113 AidlVehiclePropValueBuilder.newBuilder(VehicleProperty.PERF_VEHICLE_SPEED) in aidlInjectVehicleSpeedEvent()
|
D | CarPropertyServiceTest.java | 99 mDefaultPropValues.put(VehicleProperty.PERF_VEHICLE_SPEED, in CarPropertyServiceTest() 100 AidlVehiclePropValueBuilder.newBuilder(VehicleProperty.PERF_VEHICLE_SPEED) in CarPropertyServiceTest()
|
D | CarSensorManagerTest.java | 58 addAidlProperty(VehicleProperty.PERF_VEHICLE_SPEED, in configureMockedHal() 59 AidlVehiclePropValueBuilder.newBuilder(VehicleProperty.PERF_VEHICLE_SPEED) in configureMockedHal()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarDrivingStateService.java | 74 VehicleProperty.PERF_VEHICLE_SPEED, 363 case VehicleProperty.PERF_VEHICLE_SPEED: in handlePropertyEventLocked() 579 VehicleProperty.PERF_VEHICLE_SPEED, in updateVehiclePropertiesIfNeededLocked()
|
D | CarUxRestrictionsManagerService.java | 352 mCarPropertyService.registerListenerSafe(VehicleProperty.PERF_VEHICLE_SPEED, in init() 490 VehicleProperty.PERF_VEHICLE_SPEED, VehicleAreaType.VEHICLE_AREA_TYPE_GLOBAL); in getCurrentSpeed() 961 == VehicleProperty.PERF_VEHICLE_SPEED)) {
|
D | CarShellCommand.java | 3136 mHal.injectVhalEvent(VehiclePropertyIds.PERF_VEHICLE_SPEED, 3150 mHal.injectVhalEvent(VehiclePropertyIds.PERF_VEHICLE_SPEED, 3165 mHal.injectVhalEvent(VehiclePropertyIds.PERF_VEHICLE_SPEED, 3178 mHal.injectVhalEvent(VehiclePropertyIds.PERF_VEHICLE_SPEED,
|
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/sensors/ |
D | Sensors.java | 70 "Speed", VehiclePropertyIds.PERF_VEHICLE_SPEED, VEHICLE_AREA_TYPE_GLOBAL,
|
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/sensors/ |
D | Sensors.java | 67 "Speed", VehiclePropertyIds.PERF_VEHICLE_SPEED, VEHICLE_AREA_TYPE_GLOBAL,
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/sensor/ |
D | SensorsTestFragment.java | 69 VehiclePropertyIds.PERF_VEHICLE_SPEED, 90 put(VehiclePropertyIds.PERF_VEHICLE_SPEED, R.string.sensor_speed);
|
/packages/services/Car/experimental/service/src/com/android/experimentalcar/ |
D | DriverDistractionExperimentalFeatureService.java | 291 VehiclePropertyIds.PERF_VEHICLE_SPEED, in init() 487 if (value.getPropertyId() != VehiclePropertyIds.PERF_VEHICLE_SPEED) { in handleSpeedEventLocked()
|
/packages/services/Car/car-lib/src/com/android/car/internal/ |
D | PropertyPermissionMapping.java | 120 VehiclePropertyIds.PERF_VEHICLE_SPEED, in PropertyPermissionMapping()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/property/ |
D | HalPropertyDebugUtilsUnitTest.java | 216 new HalPropValueBuilder(true).build(VehicleProperty.PERF_VEHICLE_SPEED, in testToValueString_handlesNoValuesSet()
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | VehiclePropertyIdsTest.java | 157 propsToString.put(VehiclePropertyIds.PERF_VEHICLE_SPEED, "PERF_VEHICLE_SPEED"); in testToString()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/ |
D | FakeVhalConfigParserUnitTest.java | 867 assertThat(result.get(VehicleProperty.PERF_VEHICLE_SPEED).getConfig().maxSampleRate) in testParseDefaultConfigFile()
|
/packages/services/Car/car-lib/src/android/car/ |
D | VehiclePropertyIds.java | 443 public static final int PERF_VEHICLE_SPEED = 291504647; field in VehiclePropertyIds
|
/packages/services/Car/car-lib/api/ |
D | current.txt | 426 …rmission(android.car.Car.PERMISSION_SPEED) public static final int PERF_VEHICLE_SPEED = 291504647;…
|
D | lint-baseline.txt | 906 UnflaggedApi: android.car.VehiclePropertyIds#PERF_VEHICLE_SPEED: 907 … New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_VEHICLE_SPEED
|
/packages/services/Car/car-lib-module/api/ |
D | current.txt | 426 …rmission(android.car.Car.PERMISSION_SPEED) public static final int PERF_VEHICLE_SPEED = 291504647;…
|
/packages/services/Car/tools/GenericCarApiBuilder/ |
D | complete_car_api_list.txt | 2517 field TIRAMISU_0 int PERF_VEHICLE_SPEED = 291504647;
|