Searched refs:argv_str (Results 1 – 3 of 3) sorted by relevance
42 std::vector<std::string> argv_str; in Analyze() local43 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()[all …]
214 std::vector<std::string> argv_str; in ProcessProfiles() local215 argv_str.push_back(profman_cmd); in ProcessProfiles()217 argv_str.push_back("--profile-file-fd=" + std::to_string(profiles_fd[k])); in ProcessProfiles()219 argv_str.push_back("--reference-profile-file-fd=" + std::to_string(reference_profile_fd)); in ProcessProfiles()222 return ExecAndReturnCode(argv_str, &error); in ProcessProfiles()227 std::vector<std::string> argv_str; in GenerateTestProfile() local228 argv_str.push_back(profman_cmd); in GenerateTestProfile()229 argv_str.push_back("--generate-test-profile=" + filename); in GenerateTestProfile()231 return ExecAndReturnCode(argv_str, &error); in GenerateTestProfile()236 std::vector<std::string> argv_str; in GenerateTestProfileWithInputDex() local[all …]
68 std::vector<std::string> argv_str; in RunHiddenapiEncode() local69 argv_str.push_back(GetHiddenApiCmd()); in RunHiddenapiEncode()70 argv_str.insert(argv_str.end(), extra_args.begin(), extra_args.end()); in RunHiddenapiEncode()71 argv_str.push_back("encode"); in RunHiddenapiEncode()72 argv_str.push_back("--input-dex=" + in_dex.GetFilename()); in RunHiddenapiEncode()73 argv_str.push_back("--output-dex=" + out_dex.GetFilename()); in RunHiddenapiEncode()74 argv_str.push_back("--api-flags=" + flags_csv.GetFilename()); in RunHiddenapiEncode()75 argv_str.push_back("--no-force-assign-all"); in RunHiddenapiEncode()76 int return_code = ExecAndReturnCode(argv_str, &error); in RunHiddenapiEncode()91 std::vector<std::string> argv_str; in RunHiddenapiList() local[all …]