Searched refs:VhalClientError (Results 1 – 3 of 3) sorted by relevance
99 class VhalClientError final {101 VhalClientError() : mCode(ErrorCode::OK) {} in VhalClientError() function103 VhalClientError(ErrorCode&& code) : mCode(code) {} in VhalClientError() function105 VhalClientError(const ErrorCode& code) : mCode(code) {} in VhalClientError() function107 VhalClientError(aidl::android::hardware::automotive::vehicle::StatusCode&& code) : in VhalClientError() function110 VhalClientError(const aidl::android::hardware::automotive::vehicle::StatusCode& code) : in VhalClientError() function127 using VhalClientResult = android::base::Result<T, VhalClientError>;131 using ClientStatusError = android::base::Error<VhalClientError>;
114 ErrorCode VhalClientError::value() const { in value()118 std::string VhalClientError::toString(ErrorCode code) { in toString()141 std::string VhalClientError::print() const { in print()142 return VhalClientError::toString(mCode); in print()
57 using ::android::frameworks::automotive::vhal::VhalClientError;260 return Error<VhalClientError>(ErrorCode::NOT_AVAILABLE_FROM_VHAL) in expectGetPropConfigs()