Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/com/android/car/internal/property/
DCarPropertyErrorCodes.java152 public static @VehicleHalStatusCodeInt int getVhalSystemErrorCode(int vhalErrorCode) { in getVhalSystemErrorCode() argument
153 return vhalErrorCode & SYSTEM_ERROR_CODE_MASK; in getVhalSystemErrorCode()
159 public static int getVhalVendorErrorCode(int vhalErrorCode) { in getVhalVendorErrorCode() argument
160 return vhalErrorCode >>> VENDOR_ERROR_CODE_SHIFT; in getVhalVendorErrorCode()
/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalService.java1555 int vhalErrorCode = CarPropertyErrorCodes.getVhalSystemErrorCode( in onPropertySetError() local
1560 vhalErrorCode); in onPropertySetError()
1562 convertStatusCodeToCarSetPropertyErrorCode(vhalErrorCode); in onPropertySetError()