Searched refs:child_args (Results 1 – 5 of 5) sorted by relevance
/system/testing/gtest_extras/ |
D | IsolateMain.cpp | 134 std::vector<char*> child_args; in IsolateMain() local 136 if (!options.Process(args, &child_args)) { in IsolateMain() 142 child_args.push_back(strdup("--no_isolate")); in IsolateMain() 148 android::gtest_extras::Isolate isolate(options, child_args); in IsolateMain() 150 for (auto child_arg : child_args) { in IsolateMain()
|
D | Options.cpp | 229 bool Options::ProcessFlagfile(const std::string& file, std::vector<char*>* child_args) { in ProcessFlagfile() argument 253 if (!ProcessSingle(line.c_str(), child_args, false)) { in ProcessFlagfile() 260 bool Options::ProcessSingle(const char* arg, std::vector<char*>* child_args, bool allow_flagfile) { in ProcessSingle() argument 288 child_args->push_back(strdup(arg)); in ProcessSingle() 302 if (!ProcessFlagfile(value, child_args)) { in ProcessSingle() 310 bool Options::Process(const std::vector<const char*>& args, std::vector<char*>* child_args) { in Process() argument 349 child_args->push_back(strdup(args[0])); in Process() 370 if (!ProcessSingle(args[i], child_args, true)) { in Process()
|
D | Options.h | 35 bool Process(const std::vector<const char*>& args, std::vector<char*>* child_args); 80 bool ProcessFlagfile(const std::string& file, std::vector<char*>* child_args); 81 bool ProcessSingle(const char* arg, std::vector<char*>* child_args, bool allow_flagfile);
|
D | Isolate.h | 40 Isolate(const Options& options, const std::vector<char*>& child_args) in Isolate() argument 41 : options_(options), child_args_(child_args) {} in Isolate()
|
/system/testing/gtest_extras/tests/ |
D | OptionsTest.cpp | 783 std::vector<const char*> child_args; in TEST_F() local
|