Lines Matching refs:string

42   std::string error_msg;  in PreRuntimeCreate()
50 bool DexoptTest::Dex2Oat(const std::vector<std::string>& args, std::string* error_msg) { in Dex2Oat()
51 std::vector<std::string> argv; in Dex2Oat()
68 std::string command_line(android::base::Join(argv, ' ')); in Dex2Oat()
72 std::string DexoptTest::GenerateAlternateImage(const std::string& scratch_dir) { in GenerateAlternateImage()
73 std::vector<std::string> libcore_dex_files = GetLibCoreDexFileNames(); in GenerateAlternateImage()
74 std::vector<std::string> libcore_dex_locations = GetLibCoreDexLocations(); in GenerateAlternateImage()
76 std::string image_dir = scratch_dir + GetInstructionSetString(kRuntimeISA); in GenerateAlternateImage()
80 std::vector<std::string> extra_args { in GenerateAlternateImage()
84 std::string filename_prefix = image_dir + "/boot-interpreter"; in GenerateAlternateImage()
85 ArrayRef<const std::string> dex_files(libcore_dex_files); in GenerateAlternateImage()
86 ArrayRef<const std::string> dex_locations(libcore_dex_locations); in GenerateAlternateImage()
87 std::string error_msg; in GenerateAlternateImage()
94 void DexoptTest::GenerateOatForTest(const std::string& dex_location, in GenerateOatForTest()
95 const std::string& oat_location, in GenerateOatForTest()
99 const std::vector<std::string>& extra_args) { in GenerateOatForTest()
100 std::vector<std::string> args; in GenerateOatForTest()
116 std::string image_location = GetImageLocation(); in GenerateOatForTest()
120 std::string alternate_image_location = GenerateAlternateImage(scratch->GetPath()); in GenerateOatForTest()
125 args.push_back("--compilation-reason=" + std::string(compilation_reason)); in GenerateOatForTest()
130 std::string error_msg; in GenerateOatForTest()
156 ArrayRef<const std::string>(Runtime::Current()->GetBootClassPathLocations()), in GenerateOatForTest()
157 ArrayRef<const std::string>(Runtime::Current()->GetBootClassPath()), in GenerateOatForTest()
165 void DexoptTest::GenerateOdexForTest(const std::string& dex_location, in GenerateOdexForTest()
166 const std::string& odex_location, in GenerateOdexForTest()
169 const std::vector<std::string>& extra_args) { in GenerateOdexForTest()
181 std::string oat_location; in GenerateOatForTest()
182 std::string error_msg; in GenerateOatForTest()
215 std::string error_msg; in ReserveImageSpaceChunk()