Home | History | Annotate | Download | only in init

Lines Matching refs:error_string

85     ResultError(T&& error_string, int error_errno)
86 : error_string(std::forward<T>(error_string)), error_errno(error_errno) {}
88 std::string error_string;
93 os << t.error_string;
98 os << std::move(t.error_string);
114 ss_ << result_error.error_string;
120 ss_ << std::move(result_error.error_string);
167 : contents_(std::in_place_index_t<1>(), result_error.error_string,
170 : contents_(std::in_place_index_t<1>(), std::move(result_error.error_string),
184 const std::string& error_string() const & { return std::get<1>(contents_).error_string; }
185 std::string&& error_string() && { return std::get<1>(std::move(contents_)).error_string; }
186 const std::string&& error_string() const && {
187 return std::get<1>(std::move(contents_)).error_string;