Lines Matching refs:argv_str
41 std::vector<std::string> argv_str; in Analyze() local
42 argv_str.push_back(dexoptanalyzer_cmd); in Analyze()
43 argv_str.push_back("--dex-file=" + dex_file); in Analyze()
44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
45 argv_str.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(compiler_filter)); in Analyze()
47 argv_str.push_back("--assume-profile-changed"); in Analyze()
49 argv_str.push_back("--runtime-arg"); in Analyze()
50 argv_str.push_back(GetClassPathOption("-Xbootclasspath:", GetLibCoreDexFileNames())); in Analyze()
51 argv_str.push_back("--runtime-arg"); in Analyze()
52 argv_str.push_back(GetClassPathOption("-Xbootclasspath-locations:", GetLibCoreDexLocations())); in Analyze()
53 argv_str.push_back("--image=" + GetImageLocation()); in Analyze()
54 argv_str.push_back("--android-data=" + android_data_); in Analyze()
56 argv_str.push_back("--class-loader-context=" + std::string(class_loader_context)); in Analyze()
60 return ExecAndReturnCode(argv_str, &error); in Analyze()