HomeSort by relevance Sort by last modified time
    Searched defs:areaId (Results 1 - 7 of 7) sorted by null

  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
VehicleEmulator.cpp 97 int32_t areaId = 0;
105 areaId = getProp.area_id();
109 VehiclePropValue request = { .prop = propId, .areaId = areaId };
140 .areaId = protoVal.area_id(),
294 protoVal->set_area_id(val->areaId);
  /packages/services/Car/service/src/com/android/car/hal/
CarPropertyUtils.java 46 int areaId = halValue.areaId;
50 return new CarPropertyValue<>(propertyId, areaId, v.int32Values.get(0) == 1);
52 return new CarPropertyValue<>(propertyId, areaId, v.stringValue);
54 return new CarPropertyValue<>(propertyId, areaId, v.int64Values.get(0));
57 return new CarPropertyValue<>(propertyId, areaId, halData);
60 return new CarPropertyValue<>(propertyId, areaId,
69 vehicleProp.areaId = carProp.getAreaId();
117 builder.addAreaConfig(area.areaId, area.minInt32Value, area.maxInt32Value);
119 builder.addAreaConfig(area.areaId, area.minFloatValue, area.maxFloatValue)
    [all...]
HalClient.java 92 String.format("Failed to set value for: 0x%x, areaId: 0x%x",
93 propValue.prop, propValue.areaId));
102 String.format("Failed to set property: 0x%x, areaId: 0x%x, "
103 + "code: %d", propValue.prop, propValue.areaId, status));
116 int areaId = requestedPropValue.areaId;
119 String.format("Failed to get value for: 0x%x, areaId: 0x%x", propId, areaId));
128 String.format("Failed to get property: 0x%x, areaId: 0x%x, "
129 + "code: %d", propId, areaId, status))
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehicleHalManager_test.cpp 58 int32_t areaId = requestedPropValue.areaId;
82 auto key = makeKey(toInt(property), areaId);
91 pValue->areaId = areaId;
122 void sendHalError(StatusCode error, int32_t property, int32_t areaId) {
123 doHalPropertySetError(error, property, areaId);
132 return makeKey(v.prop, v.areaId);
158 void invokeGet(int32_t property, int32_t areaId) {
161 requestedValue.areaId = areaId
    [all...]
  /packages/services/Car/car-lib/src/android/car/hardware/
CarPropertyConfig.java 76 * Returns the first areaId.
87 public boolean hasArea(int areaId) {
88 return mSupportedAreas.indexOfKey(areaId) >= 0;
92 public T getMinValue(int areaId) {
93 AreaConfig<T> area = mSupportedAreas.get(areaId);
98 public T getMaxValue(int areaId) {
99 AreaConfig<T> area = mSupportedAreas.get(areaId);
145 int areaId = in.readInt();
147 mSupportedAreas.put(areaId, area);
262 public Builder<T> addArea(int areaId) {
    [all...]
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
E2ePerformanceTest.java 286 CarPropertyConfig<Float> cfg, int areaId, CountDownLatch counter) {
287 float minValue = cfg.getMinValue(areaId);
288 float maxValue = cfg.getMaxValue(areaId);
294 mgr.setFloatProperty(cfg.getPropertyId(), areaId, curValue);
295 actualValue = mgr.getFloatProperty(cfg.getPropertyId(), areaId);
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 374 milliseconds