Lines Matching refs:string
31 std::string GetDexoptAnalyzerCmd() { in GetDexoptAnalyzerCmd()
32 std::string file_path = GetArtBinDir() + "/dexoptanalyzer"; in GetDexoptAnalyzerCmd()
40 int Analyze(const std::string& dex_file, in Analyze()
45 std::string dexoptanalyzer_cmd = GetDexoptAnalyzerCmd(); in Analyze()
46 std::vector<std::string> argv_str; in Analyze()
49 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
64 argv_str.push_back("--class-loader-context=" + std::string(class_loader_context)); in Analyze()
67 std::string error; in Analyze()
85 void Verify(const std::string& dex_file, in Verify()
117 std::string dex_location = GetScratchDir() + "/DexNoOat.jar"; in TEST_F()
130 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F()
131 std::string odex_location = GetOdexDir() + "/OatUpToDate.odex"; in TEST_F()
145 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F()
146 std::string odex_location = GetOdexDir() + "/ProfileOatUpToDate.odex"; in TEST_F()
160 std::string dex_location = GetScratchDir() + "/VerifyAndEmptyProfiles.jar"; in TEST_F()
161 std::string odex_location = GetOdexDir() + "/VerifyAndEmptyProfiles.odex"; in TEST_F()
188 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F()
189 std::string odex_location = GetOdexDir() + "/Downgrade.odex"; in TEST_F()
203 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F()
204 std::string odex_location = GetOdexDir() + "/MultiDexOatUpToDate.odex"; in TEST_F()
214 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F()
215 std::string odex_location = GetOdexDir() + "/MultiDexSecondaryOutOfDate.odex"; in TEST_F()
231 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F()
232 std::string odex_location = GetOdexDir() + "/OatDexOutOfDate.odex"; in TEST_F()
247 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F()
248 std::string odex_location = GetOdexDir() + "/OatImageOutOfDate.odex"; in TEST_F()
266 std::string dex_location = GetScratchDir() + "/OatVerifyAtRuntimeImageOutOfDate.jar"; in TEST_F()
267 std::string odex_location = GetOdexDir() + "/OatVerifyAtRuntimeImageOutOfDate.odex"; in TEST_F()
281 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F()
282 std::string odex_location = GetOdexDir() + "/DexOdexNoOat.odex"; in TEST_F()
295 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar"; in TEST_F()
306 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar"; in TEST_F()
307 std::string odex_location = GetOdexDir() + "/OdexOatOverlap.odex"; in TEST_F()
308 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; in TEST_F()
322 std::string dex_location = GetScratchDir() + "/DexVerifyAtRuntimeOdexNoOat.jar"; in TEST_F()
323 std::string odex_location = GetOdexDir() + "/DexVerifyAtRuntimeOdexNoOat.odex"; in TEST_F()
334 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx"; in TEST_F()
342 std::string dex_location = "/xx"; in TEST_F()
350 std::string dex_location1 = GetScratchDir() + "/DexToAnalyze.jar"; in TEST_F()
351 std::string odex_location1 = GetOdexDir() + "/DexToAnalyze.odex"; in TEST_F()
352 std::string dex_location2 = GetScratchDir() + "/DexInContext.jar"; in TEST_F()
356 std::string class_loader_context = "PCL[" + dex_location2 + "]"; in TEST_F()
357 std::string class_loader_context_option = "--class-loader-context=PCL[" + dex_location2 + "]"; in TEST_F()