OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expanded_args
(Results
1 - 2
of
2
) sorted by null
/system/core/init/
action.cpp
40
std::vector<std::string>
expanded_args
;
local
41
expanded_args
.resize(args_.size());
42
expanded_args
[0] = args_[0];
44
if (!expand_props(args_[i], &
expanded_args
[i])) {
50
return func_(
expanded_args
);
service.cpp
463
std::vector<std::string>
expanded_args
;
local
465
expanded_args
.resize(args_.size());
468
if (!expand_props(args_[i], &
expanded_args
[i])) {
472
strs.push_back(const_cast<char*>(
expanded_args
[i].c_str()));
Completed in 362 milliseconds