Home
last modified time | relevance | path

Searched refs:expanded_arg (Results 1 – 3 of 3) sorted by relevance

/system/core/init/
Daction.cpp38 auto expanded_arg = ExpandProps(args[i]); in RunBuiltinFunction() local
39 if (!expanded_arg.ok()) { in RunBuiltinFunction()
40 return expanded_arg.error(); in RunBuiltinFunction()
42 builtin_arguments.args[i] = std::move(*expanded_arg); in RunBuiltinFunction()
77 auto expanded_arg = ExpandProps(args_[i]); in CheckCommand() local
78 if (!expanded_arg.ok()) { in CheckCommand()
79 if (expanded_arg.error().message().find("doesn't exist while expanding") != in CheckCommand()
85 return expanded_arg.error(); in CheckCommand()
88 builtin_arguments.args[i] = std::move(*expanded_arg); in CheckCommand()
Dsubcontext.cpp105 auto expanded_arg = ExpandProps(arg); in ExpandArgs() local
106 if (!expanded_arg.ok()) { in ExpandArgs()
108 failure->set_error_string(expanded_arg.error().message()); in ExpandArgs()
113 expand_args_reply->add_expanded_args(*expanded_arg); in ExpandArgs()
Dservice.cpp110 auto expanded_arg = ExpandProps(args[i]); in ExpandArgsAndExecv() local
111 if (!expanded_arg.ok()) { in ExpandArgsAndExecv()
112 LOG(FATAL) << args[0] << ": cannot expand arguments': " << expanded_arg.error(); in ExpandArgsAndExecv()
114 expanded_args[i] = *expanded_arg; in ExpandArgsAndExecv()