OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:inner_error
(Results
1 - 3
of
3
) sorted by null
/system/weaved/buffet/
weave_error_conversion.h
28
const weave::Error*
inner_error
= source.GetInnerError();
local
29
if (
inner_error
)
30
ConvertError(*
inner_error
, destination);
43
const brillo::Error*
inner_error
= source.GetInnerError();
local
44
if (
inner_error
)
45
ConvertError(*
inner_error
, destination);
/external/libbrillo/brillo/errors/
error.cc
40
ErrorPtr
inner_error
) {
43
new Error(location, domain, code, message, std::move(
inner_error
)));
74
ErrorPtr
inner_error
= inner_error_ ? inner_error_->Clone() : nullptr;
local
76
new Error(location_, domain_, code_, message_, std::move(
inner_error
)));
98
ErrorPtr
inner_error
)
103
std::move(
inner_error
)} {
110
ErrorPtr
inner_error
)
115
inner_error_(std::move(
inner_error
)) {
/external/libweave/src/
error.cc
37
ErrorPtr
inner_error
) {
39
return ErrorPtr(new Error(location, code, message, std::move(
inner_error
)));
71
ErrorPtr
inner_error
= inner_error_ ? inner_error_->Clone() : nullptr;
local
73
new Error(location_, code_, message_, std::move(
inner_error
)));
90
ErrorPtr
inner_error
)
92
std::move(
inner_error
)} {}
97
ErrorPtr
inner_error
)
101
inner_error_(std::move(
inner_error
)) {}
Completed in 61 milliseconds