Searched refs:VhalError (Results 1 – 4 of 4) sorted by relevance
234 class VhalError final {236 VhalError() : mCode(aidl::android::hardware::automotive::vehicle::StatusCode::OK) {} in VhalError() function238 VhalError(aidl::android::hardware::automotive::vehicle::StatusCode&& code) : mCode(code) {} in VhalError() function240 VhalError(const aidl::android::hardware::automotive::vehicle::StatusCode& code) : mCode(code) {} in VhalError() function256 using VhalResult = android::base::Result<T, VhalError>;260 using StatusError = android::base::Error<VhalError>;
159 VhalError>164 VhalError>
245 StatusCode VhalError::value() const { in value()249 std::string VhalError::print() const { in print()
768 VhalResult<void> result = Error<VhalError>(StatusCode::INVALID_ARG) << "error message"; in TEST()