• Home
  • Raw
  • Download

Lines Matching refs:string

45   std::string error_msg;  in PreRuntimeCreate()
53 bool DexoptTest::Dex2Oat(const std::vector<std::string>& args, std::string* error_msg) { in Dex2Oat()
54 std::vector<std::string> argv; in Dex2Oat()
71 std::string command_line(android::base::Join(argv, ' ')); in Dex2Oat()
75 std::string DexoptTest::GenerateAlternateImage(const std::string& scratch_dir) { in GenerateAlternateImage()
76 std::vector<std::string> libcore_dex_files = GetLibCoreDexFileNames(); in GenerateAlternateImage()
77 std::vector<std::string> libcore_dex_locations = GetLibCoreDexLocations(); in GenerateAlternateImage()
79 std::string image_dir = scratch_dir + GetInstructionSetString(kRuntimeISA); in GenerateAlternateImage()
83 std::vector<std::string> extra_args { in GenerateAlternateImage()
87 std::string filename_prefix = image_dir + "/boot-interpreter"; in GenerateAlternateImage()
88 ArrayRef<const std::string> dex_files(libcore_dex_files); in GenerateAlternateImage()
89 ArrayRef<const std::string> dex_locations(libcore_dex_locations); in GenerateAlternateImage()
90 std::string error_msg; in GenerateAlternateImage()
97 void DexoptTest::GenerateOatForTest(const std::string& dex_location, in GenerateOatForTest()
98 const std::string& oat_location, in GenerateOatForTest()
102 const std::vector<std::string>& extra_args) { in GenerateOatForTest()
103 std::vector<std::string> args; in GenerateOatForTest()
118 std::string error_msg; in GenerateOatForTest()
137 std::string image_location = GetImageLocation(); in GenerateOatForTest()
141 std::string alternate_image_location = GenerateAlternateImage(scratch->GetPath()); in GenerateOatForTest()
146 args.push_back("--compilation-reason=" + std::string(compilation_reason)); in GenerateOatForTest()
151 std::string error_msg; in GenerateOatForTest()
176 ArrayRef<const std::string>(&image_location, 1), in GenerateOatForTest()
177 ArrayRef<const std::string>(Runtime::Current()->GetBootClassPathLocations()), in GenerateOatForTest()
178 ArrayRef<const std::string>(Runtime::Current()->GetBootClassPath()), in GenerateOatForTest()
186 void DexoptTest::GenerateOdexForTest(const std::string& dex_location, in GenerateOdexForTest()
187 const std::string& odex_location, in GenerateOdexForTest()
190 const std::vector<std::string>& extra_args) { in GenerateOdexForTest()
202 std::string oat_location; in GenerateOatForTest()
203 std::string error_msg; in GenerateOatForTest()
237 std::string error_msg; in ReserveImageSpaceChunk()