Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/hal/property/
DHalPropertyDebugUtils.java191 String propertyUnits = getUnitsIfSupported(propertyId); in toValueString() local
204 return getIntValueName(propertyId, halPropValue.getInt32Value(0), propertyUnits); in toValueString()
209 propertyUnits)); in toValueString()
217 return halPropValue.getFloatValue(0) + propertyUnits; in toValueString()
221 stringJoiner.add(halPropValue.getFloatValue(i) + propertyUnits); in toValueString()
229 return halPropValue.getInt64Value(0) + propertyUnits; in toValueString()
233 stringJoiner.add(halPropValue.getInt64Value(i) + propertyUnits); in toValueString()
266 private static String getIntValueName(int propertyId, int value, String propertyUnits) { in getIntValueName() argument
279 return value + propertyUnits; in getIntValueName()