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