Home
last modified time | relevance | path

Searched refs:propConfig (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/service/src/com/android/car/hal/
DDiagnosticHalService.java91 protected int getTokenForProperty(VehiclePropConfig propConfig) { in getTokenForProperty() argument
92 switch (propConfig.prop) { in getTokenForProperty()
94 mDiagnosticCapabilities.setSupported(propConfig.prop); in getTokenForProperty()
95 mVehiclePropertyToConfig.put(propConfig.prop, propConfig); in getTokenForProperty()
97 propConfig.configArray)); in getTokenForProperty()
100 mDiagnosticCapabilities.setSupported(propConfig.prop); in getTokenForProperty()
101 mVehiclePropertyToConfig.put(propConfig.prop, propConfig); in getTokenForProperty()
103 propConfig.configArray)); in getTokenForProperty()
106 mDiagnosticCapabilities.setSupported(propConfig.prop); in getTokenForProperty()
107 return propConfig.prop; in getTokenForProperty()
[all …]
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
DVehiclePropConfigBuilder.java46 private VehiclePropConfig clone(VehiclePropConfig propConfig) { in clone() argument
49 newConfig.prop = propConfig.prop; in clone()
50 newConfig.access = propConfig.access; in clone()
51 newConfig.changeMode = propConfig.changeMode; in clone()
52 newConfig.supportedAreas = propConfig.supportedAreas; in clone()
53 newConfig.configFlags = propConfig.configFlags; in clone()
54 newConfig.configString = propConfig.configString; in clone()
55 newConfig.minSampleRate = propConfig.minSampleRate; in clone()
56 newConfig.maxSampleRate = propConfig.maxSampleRate; in clone()
57 newConfig.configArray.addAll(propConfig.configArray); in clone()
[all …]
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DDiagnosticEventBuilder.java101 public DiagnosticEventBuilder(VehiclePropConfig propConfig) { in DiagnosticEventBuilder() argument
102 this(propConfig.prop, propConfig.configArray.get(0), propConfig.configArray.get(1)); in DiagnosticEventBuilder()