• Home
  • Raw
  • Download

Lines Matching refs:dex_location

97   std::string dex_location = GetScratchDir() + "/DexNoOat.jar";  in TEST_F()  local
98 Copy(GetDexSrc1(), dex_location); in TEST_F()
100 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
101 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
102 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
103 Verify(dex_location, CompilerFilter::kSpeedProfile); in TEST_F()
108 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F() local
109 Copy(GetDexSrc1(), dex_location); in TEST_F()
110 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
112 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
113 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
114 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
115 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
120 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F() local
121 Copy(GetDexSrc1(), dex_location); in TEST_F()
122 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeedProfile); in TEST_F()
124 Verify(dex_location, CompilerFilter::kSpeedProfile, false); in TEST_F()
125 Verify(dex_location, CompilerFilter::kQuicken, false); in TEST_F()
126 Verify(dex_location, CompilerFilter::kSpeedProfile, true); in TEST_F()
127 Verify(dex_location, CompilerFilter::kQuicken, true); in TEST_F()
131 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F() local
132 Copy(GetDexSrc1(), dex_location); in TEST_F()
133 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kQuicken); in TEST_F()
135 Verify(dex_location, CompilerFilter::kSpeedProfile, false, true); in TEST_F()
136 Verify(dex_location, CompilerFilter::kQuicken, false, true); in TEST_F()
137 Verify(dex_location, CompilerFilter::kVerify, false, true); in TEST_F()
142 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F() local
143 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
144 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
146 Verify(dex_location, CompilerFilter::kSpeed, false); in TEST_F()
151 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F() local
154 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
155 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
159 Copy(GetMultiDexSrc2(), dex_location); in TEST_F()
161 Verify(dex_location, CompilerFilter::kSpeed, false); in TEST_F()
168 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F() local
172 Copy(GetDexSrc1(), dex_location); in TEST_F()
173 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
174 Copy(GetDexSrc2(), dex_location); in TEST_F()
176 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
177 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
183 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F() local
185 Copy(GetDexSrc1(), dex_location); in TEST_F()
186 GenerateOatForTest(dex_location.c_str(), in TEST_F()
190 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
191 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
192 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
200 std::string dex_location = GetScratchDir() + "/OatVerifyAtRuntimeImageOutOfDate.jar"; in TEST_F() local
202 Copy(GetDexSrc1(), dex_location); in TEST_F()
203 GenerateOatForTest(dex_location.c_str(), in TEST_F()
207 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
208 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
213 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F() local
216 Copy(GetDexSrc1(), dex_location); in TEST_F()
217 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
219 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
220 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
221 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
226 std::string dex_location = GetScratchDir() + "/StrippedDexOdexNoOat.jar"; in TEST_F() local
229 Copy(GetDexSrc1(), dex_location); in TEST_F()
230 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
233 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
235 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
240 std::string dex_location = GetScratchDir() + "/StrippedDexOdexOat.jar"; in TEST_F() local
244 Copy(GetDexSrc2(), dex_location); in TEST_F()
245 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
248 Copy(GetDexSrc1(), dex_location); in TEST_F()
249 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
252 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
254 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
255 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
256 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
262 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar"; in TEST_F() local
264 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
266 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
267 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
268 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
273 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar"; in TEST_F() local
277 Copy(GetDexSrc1(), dex_location); in TEST_F()
278 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
284 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
289 std::string dex_location = GetScratchDir() + "/DexVerifyAtRuntimeOdexNoOat.jar"; in TEST_F() local
292 Copy(GetDexSrc1(), dex_location); in TEST_F()
293 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kExtract); in TEST_F()
295 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
296 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
301 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx"; in TEST_F() local
302 Copy(GetDexSrc1(), dex_location); in TEST_F()
304 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
309 std::string dex_location = "/xx"; in TEST_F() local
311 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()