Searched defs:exceptionCode (Results 1 - 2 of 2) sorted by relevance

/system/libhidl/base/
H A DStatus.cpp84 Status Status::fromExceptionCode(int32_t exceptionCode) { argument
85 return Status(exceptionCode, OK);
88 Status Status::fromExceptionCode(int32_t exceptionCode, argument
90 return Status(exceptionCode, OK, message);
99 Status::Status(int32_t exceptionCode, int32_t errorCode) argument
100 : mException(exceptionCode),
103 Status::Status(int32_t exceptionCode, int32_t errorCode, const char *message) argument
104 : mException(exceptionCode),
127 if (s.exceptionCode() == Status::EX_NONE) {
130 stream << "Status(" << exceptionToString(s.exceptionCode()) << ")
[all...]
/system/libhidl/base/include/hidl/
H A DStatus.h82 static Status fromExceptionCode(int32_t exceptionCode);
83 static Status fromExceptionCode(int32_t exceptionCode,
103 int32_t exceptionCode() const { return mException; } function in class:android::hardware::final
115 Status(int32_t exceptionCode, int32_t errorCode);
116 Status(int32_t exceptionCode, int32_t errorCode, const char *message);

Completed in 65 milliseconds