Lines Matching refs:domain
15 const std::string& domain, in LogError() argument
25 << "Domain=" << domain << ", Code=" << code << ", Message=" << message; in LogError()
30 const std::string& domain, in Create() argument
33 return Create(location, domain, code, message, ErrorPtr()); in Create()
37 const std::string& domain, in Create() argument
41 LogError(location, domain, code, message); in Create()
43 new Error(location, domain, code, message, std::move(inner_error))); in Create()
48 const std::string& domain, in AddTo() argument
52 *error = Create(location, domain, code, message, std::move(*error)); in AddTo()
56 LogError(location, domain, code, message); in AddTo()
62 const std::string& domain, in AddToPrintf() argument
70 AddTo(error, location, domain, code, message); in AddToPrintf()
79 bool Error::HasDomain(const std::string& domain) const { in HasDomain()
80 return FindErrorOfDomain(this, domain) != nullptr; in HasDomain()
83 bool Error::HasError(const std::string& domain, const std::string& code) const { in HasError() argument
84 return FindError(this, domain, code) != nullptr; in HasError()
95 const std::string& domain, in Error() argument
100 domain, in Error()
107 const std::string& domain, in Error() argument
111 : domain_(domain), in Error()
119 const std::string& domain) { in FindErrorOfDomain() argument
121 if (error_chain_start->GetDomain() == domain) in FindErrorOfDomain()
129 const std::string& domain, in FindError() argument
132 if (error_chain_start->GetDomain() == domain && in FindError()