Home
last modified time | relevance | path

Searched refs:mMessage (Results 1 – 5 of 5) sorted by relevance

/system/tools/hidl/lint/
DLint.cpp28 : mLevel(level), mLocation(location), mMessage(message) {} in Lint()
50 return mMessage; in getMessage()
54 return std::tie(mLocation, mLevel, mMessage) < in operator <()
55 std::tie(other.mLocation, other.mLevel, other.mMessage); in operator <()
59 mMessage += in; in operator <<()
67 lint["message"] = mMessage; in asJson()
DLint.h53 std::string mMessage; member
/system/libhidl/base/
DStatus.cpp82 mMessage(message) {} in Status()
87 mMessage = message; in setException()
93 mMessage.clear(); in setFromStatusT()
/system/libhidl/base/include/hidl/
DStatus.h108 const char *exceptionMessage() const { return mMessage.c_str(); } in exceptionMessage()
130 std::string mMessage; variable
/system/libvintf/test/
Dvintf_object_tests.cpp1877 ErrorMessageMatcher(const std::string& message) : mMessage(message) {} in ErrorMessageMatcher()
1886 return result.error().message().find(mMessage) != std::string::npos; in MatchAndExplain()
1889 *os << "error message contains \"" << mMessage << "\""; in DescribeTo()
1892 *os << "error message does not contain \"" << mMessage << "\""; in DescribeNegationTo()
1896 std::string mMessage; member in android::vintf::testing::ErrorMessageMatcher