Home
last modified time | relevance | path

Searched refs:VhalError (Results 1 – 4 of 4) sorted by relevance

/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/include/
DVehicleUtils.h234 class VhalError final {
236 VhalError() : mCode(aidl::android::hardware::automotive::vehicle::StatusCode::OK) {} in VhalError() function
238 VhalError(aidl::android::hardware::automotive::vehicle::StatusCode&& code) : mCode(code) {} in VhalError() function
240 VhalError(const aidl::android::hardware::automotive::vehicle::StatusCode& code) : mCode(code) {} in VhalError() function
256 using VhalResult = android::base::Result<T, VhalError>;
260 using StatusError = android::base::Error<VhalError>;
DVehiclePropertyStore.h159 VhalError>
164 VhalError>
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/src/
DVehicleUtils.cpp245 StatusCode VhalError::value() const { in value()
249 std::string VhalError::print() const { in print()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/test/
DVehicleUtilsTest.cpp768 VhalResult<void> result = Error<VhalError>(StatusCode::INVALID_ARG) << "error message"; in TEST()