Home
last modified time | relevance | path

Searched refs:expanded_args (Results 1 – 4 of 4) sorted by relevance

/system/core/init/
Daction.cpp60 auto expanded_args = subcontext->ExpandArgs(args_); in InvokeFunc() local
61 if (!expanded_args) { in InvokeFunc()
62 return expanded_args.error(); in InvokeFunc()
64 return RunBuiltinFunction(func_, *expanded_args, subcontext->context()); in InvokeFunc()
Dsubcontext.cpp356 auto expanded_args = std::vector<std::string>{}; in ExpandArgs()
357 for (const auto& string : reply.expanded_args()) { in ExpandArgs()
358 expanded_args.emplace_back(string); in ExpandArgs()
360 return expanded_args; in ExpandArgs()
Dsubcontext.proto34 message ExpandArgsReply { repeated string expanded_args = 1; } field
Dservice.cpp191 std::vector<std::string> expanded_args; in ExpandArgsAndExecv() local
194 expanded_args.resize(args.size()); in ExpandArgsAndExecv()
197 if (!expand_props(args[i], &expanded_args[i])) { in ExpandArgsAndExecv()
200 c_strings.push_back(expanded_args[i].data()); in ExpandArgsAndExecv()