Home
last modified time | relevance | path

Searched refs:mPropertyId (Results 1 – 14 of 14) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyValue.java55 private final int mPropertyId; field in CarPropertyValue
143 mPropertyId = propertyId; in CarPropertyValue()
158 mPropertyId = in.readInt(); in CarPropertyValue()
200 dest.writeInt(mPropertyId); in writeToParcel()
225 return mPropertyId; in getPropertyId()
296 + "mPropertyId=0x" + toHexString(mPropertyId) in toString()
297 + ", propertyName=" + VehiclePropertyIds.toString(mPropertyId) in toString()
309 mPropertyId, mAreaId, mStatus, mTimestampNanos, mValue}); in hashCode()
322 return mPropertyId == carPropertyValue.mPropertyId && mAreaId == carPropertyValue.mAreaId in equals()
DCarPropertyConfig.java60 private final int mPropertyId; field in CarPropertyConfig
76 mPropertyId = propertyId; in CarPropertyConfig()
217 return mPropertyId; in getPropertyId()
264 mPropertyId)); in getAreaIdConfig()
333 + VehiclePropertyIds.toString(mPropertyId)); in getFirstAndOnlyAreaId()
414 dest.writeInt(mPropertyId); in writeToParcel()
432 mPropertyId = in.readInt(); in CarPropertyConfig()
459 + "mPropertyId=" + VehiclePropertyIds.toString(mPropertyId) in toString()
589 private final int mPropertyId;
595 mPropertyId = propertyId;
[all …]
/packages/services/Car/car-lib/src/com/android/car/internal/property/
DAsyncPropertyServiceRequest.java40 private final int mPropertyId; field in AsyncPropertyServiceRequest
89 mPropertyId = propertyId; in AsyncPropertyServiceRequest()
130 return mPropertyId; in getPropertyId()
164 dest.writeInt(mPropertyId); in writeToParcel()
190 this.mPropertyId = propertyId; in AsyncPropertyServiceRequest()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/toggle/
DHvacToggleButton.java52 private int mPropertyId; field in HvacToggleButton
98 mPropertyId = typedArray.getInt(R.styleable.HvacView_hvacPropertyId, INVALID_ID); in parseAttributes()
135 if ((mPropertyId & VEHICLE_AREA_MASK) == VEHICLE_AREA_SEAT) { in shouldAllowControl()
181 return mPropertyId; in getHvacPropertyToView()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DSubscription.java40 private final int mPropertyId; field in Subscription
48 mPropertyId = builder.mBuilderPropertyId; in Subscription()
101 return mPropertyId; in getPropertyId()
DCarPropertyManager.java303 private final int mPropertyId; field in CarPropertyManager.GetPropertyRequest
319 return mPropertyId; in getPropertyId()
336 mPropertyId = propertyId; in GetPropertyRequest()
350 .append(VehiclePropertyIds.toString(mPropertyId)) in toString()
366 private final int mPropertyId; field in CarPropertyManager.SetPropertyRequest
459 return mPropertyId; in getPropertyId()
497 mPropertyId = propertyId; in SetPropertyRequest()
512 .append(VehiclePropertyIds.toString(mPropertyId)) in toString()
530 private final int mPropertyId; field in CarPropertyManager.PropertyAsyncError
539 return mPropertyId; in getPropertyId()
[all …]
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/sensors/
DSensor.java37 public final int mPropertyId; field in Sensor
55 mPropertyId = propertyId; in Sensor()
DSensors.java117 .computeIfAbsent(sensorId.mPropertyId, (id) -> new ArrayList<>()) in initializeSensorsMap()
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/sensors/
DSensor.java37 public final int mPropertyId; field in Sensor
55 mPropertyId = propertyId; in Sensor()
DSensors.java116 mSensorByPropertyId.append(sensorId.mPropertyId, sensorId); in initializeSensorsMap()
/packages/services/Car/libs/vehicle-hal-support-lib/src/com/android/car/hal/test/
DDiagnosticEventBuilder.java98 private final int mPropertyId;
115 mPropertyId = propertyId; in DiagnosticEventBuilder()
155 mPropertyId); in build()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
DPropertyTestFragment.java102 private Spinner mPropertyId; field in PropertyTestFragment
164 mPropertyId.setAdapter(adapter); in onRequestPermissionsResult()
165 mPropertyId.setOnItemSelectedListener(this); in onRequestPermissionsResult()
182 mPropertyId = view.findViewById(R.id.sPropertyId); in onCreateView()
200 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
215 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
233 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
267 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/
DClusterViewModel.java231 CarPropertyValue<?> carPropertyValue = mCarPropertyManager.getProperty(sensor.mPropertyId, in getSensorValue()
234 Log.w(TAG, "Property ID: " + VehiclePropertyIds.toString(sensor.mPropertyId) in getSensorValue()
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/view/
DClusterViewModel.java225 .getProperty(sensor.mPropertyId, sensor.mAreaId); in getSensorValue()