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

/system/core/init/
H A Dsubcontext.proto34 message ExpandArgsReply { repeated string expanded_args = 1; }
H A Daction.cpp62 auto expanded_args = subcontext->ExpandArgs(args_); local
63 if (!expanded_args) {
64 return expanded_args.error();
66 return RunBuiltinFunction(func_, *expanded_args, subcontext->context());
H A Dsubcontext.cpp350 auto expanded_args = std::vector<std::string>{}; local
351 for (const auto& string : reply.expanded_args()) {
352 expanded_args.emplace_back(string);
354 return expanded_args;
H A Dservice.cpp187 std::vector<std::string> expanded_args; local
190 expanded_args.resize(args.size());
193 if (!expand_props(args[i], &expanded_args[i])) {
196 c_strings.push_back(expanded_args[i].data());

Completed in 56 milliseconds