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

/system/tpm/trunks/
H A Derror_codes.cc313 std::string error_string = GetErrorStringInternal(error); local
314 if (!error_string.empty()) {
315 return error_string;
320 error_string = GetErrorStringInternal(error);
335 error_string = GetErrorStringInternal(error & kFormatOneErrorMask);
336 if (!error_string.empty()) {
337 ss << error_string; local
340 if (error_string.empty()) {
/system/core/init/
H A Dresult.h85 ResultError(T&& error_string, int error_errno) argument
86 : error_string(std::forward<T>(error_string)), error_errno(error_errno) {}
88 std::string error_string; member in struct:android::init::ResultError
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; } function in class:android::init::Result
185 std::string&& error_string() && { return std::get<1>(std::move(contents_)).error_string; } function in class:android::init::Result
186 const std::string&& error_string() const && { function in class:android::init::Result
[all...]

Completed in 856 milliseconds