Home
last modified time | relevance | path

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

/packages/services/Car/cpp/vhal/client/include/
DIVhalClient.h99 class VhalClientError final {
101 VhalClientError() : mCode(ErrorCode::OK) {} in VhalClientError() function
103 VhalClientError(ErrorCode&& code) : mCode(code) {} in VhalClientError() function
105 VhalClientError(const ErrorCode& code) : mCode(code) {} in VhalClientError() function
107 VhalClientError(aidl::android::hardware::automotive::vehicle::StatusCode&& code) : in VhalClientError() function
110 VhalClientError(const aidl::android::hardware::automotive::vehicle::StatusCode& code) : in VhalClientError() function
127 using VhalClientResult = android::base::Result<T, VhalClientError>;
131 using ClientStatusError = android::base::Error<VhalClientError>;
/packages/services/Car/cpp/vhal/client/src/
DIVhalClient.cpp114 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()
/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogProcessServiceTest.cpp57 using ::android::frameworks::automotive::vhal::VhalClientError;
260 return Error<VhalClientError>(ErrorCode::NOT_AVAILABLE_FROM_VHAL) in expectGetPropConfigs()