Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/property/
DHalPropertyDebugUtilsUnitTest.java24 import static com.android.car.hal.property.HalPropertyDebugUtils.toStatusString;
263 assertThat(toStatusString(VehiclePropertyStatus.ERROR)).isEqualTo("ERROR(0x2)"); in testToStatusString()
264 assertThat(toStatusString(-1)).isEqualTo("INVALID_VehiclePropertyStatus(0xffffffff)"); in testToStatusString()
/packages/services/Car/service/src/com/android/car/hal/
DHalPropValue.java21 import static com.android.car.hal.property.HalPropertyDebugUtils.toStatusString;
263 debugStringJoiner.add("Status: " + toStatusString(getStatus())); in toString()
/packages/services/Car/service/src/com/android/car/hal/property/
DHalPropertyDebugUtils.java341 public static String toStatusString(int status) { in toStatusString() method in HalPropertyDebugUtils