Home
last modified time | relevance | path

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

/system/core/init/
Daction.cpp61 auto expanded_args = subcontext->ExpandArgs(args_); in InvokeFunc() local
62 if (!expanded_args.ok()) { in InvokeFunc()
63 return expanded_args.error(); in InvokeFunc()
65 return RunBuiltinFunction(func_, *expanded_args, subcontext->context()); in InvokeFunc()
Dsubcontext.cpp325 auto expanded_args = std::vector<std::string>{}; in ExpandArgs()
326 for (const auto& string : reply.expanded_args()) { in ExpandArgs()
327 expanded_args.emplace_back(string); in ExpandArgs()
329 return expanded_args; in ExpandArgs()
Dsubcontext.proto34 message ExpandArgsReply { repeated string expanded_args = 1; } field
Dservice.cpp104 std::vector<std::string> expanded_args; in ExpandArgsAndExecv() local
107 expanded_args.resize(args.size()); in ExpandArgsAndExecv()
114 expanded_args[i] = *expanded_arg; in ExpandArgsAndExecv()
115 c_strings.push_back(expanded_args[i].data()); in ExpandArgsAndExecv()