Lines Matching refs:dex_location

102   std::string dex_location = GetScratchDir() + "/DexNoOat.jar";  in TEST_F()  local
103 Copy(GetDexSrc1(), dex_location); in TEST_F()
105 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
106 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
107 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
108 Verify(dex_location, CompilerFilter::kSpeedProfile); in TEST_F()
109 Verify(dex_location, CompilerFilter::kSpeed, false, false, nullptr); in TEST_F()
114 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F() local
115 Copy(GetDexSrc1(), dex_location); in TEST_F()
116 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
118 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
119 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
120 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
121 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
122 Verify(dex_location, CompilerFilter::kSpeed, false, false, nullptr); in TEST_F()
127 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F() local
128 Copy(GetDexSrc1(), dex_location); in TEST_F()
129 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeedProfile); in TEST_F()
131 Verify(dex_location, CompilerFilter::kSpeedProfile, false); in TEST_F()
132 Verify(dex_location, CompilerFilter::kQuicken, false); in TEST_F()
133 Verify(dex_location, CompilerFilter::kSpeedProfile, true); in TEST_F()
134 Verify(dex_location, CompilerFilter::kQuicken, true); in TEST_F()
138 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F() local
139 Copy(GetDexSrc1(), dex_location); in TEST_F()
140 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kQuicken); in TEST_F()
142 Verify(dex_location, CompilerFilter::kSpeedProfile, false, true); in TEST_F()
143 Verify(dex_location, CompilerFilter::kQuicken, false, true); in TEST_F()
144 Verify(dex_location, CompilerFilter::kVerify, false, true); in TEST_F()
149 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F() local
150 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
151 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
153 Verify(dex_location, CompilerFilter::kSpeed, false); in TEST_F()
158 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F() local
161 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
162 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
166 Copy(GetMultiDexSrc2(), dex_location); in TEST_F()
168 Verify(dex_location, CompilerFilter::kSpeed, false); in TEST_F()
175 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F() local
179 Copy(GetDexSrc1(), dex_location); in TEST_F()
180 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
181 Copy(GetDexSrc2(), dex_location); in TEST_F()
183 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
184 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
190 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F() local
192 Copy(GetDexSrc1(), dex_location); in TEST_F()
193 GenerateOatForTest(dex_location.c_str(), in TEST_F()
197 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
198 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
199 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
207 std::string dex_location = GetScratchDir() + "/OatVerifyAtRuntimeImageOutOfDate.jar"; in TEST_F() local
209 Copy(GetDexSrc1(), dex_location); in TEST_F()
210 GenerateOatForTest(dex_location.c_str(), in TEST_F()
214 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
215 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
220 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F() local
223 Copy(GetDexSrc1(), dex_location); in TEST_F()
224 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
226 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
227 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
228 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
233 std::string dex_location = GetScratchDir() + "/StrippedDexOdexNoOat.jar"; in TEST_F() local
236 Copy(GetDexSrc1(), dex_location); in TEST_F()
237 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
240 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
242 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
247 std::string dex_location = GetScratchDir() + "/StrippedDexOdexOat.jar"; in TEST_F() local
251 Copy(GetDexSrc2(), dex_location); in TEST_F()
252 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed); in TEST_F()
255 Copy(GetDexSrc1(), dex_location); in TEST_F()
256 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
259 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
261 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
262 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
263 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
269 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar"; in TEST_F() local
271 Copy(GetStrippedDexSrc1(), dex_location); in TEST_F()
273 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
274 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
275 Verify(dex_location, CompilerFilter::kQuicken); in TEST_F()
280 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar"; in TEST_F() local
284 Copy(GetDexSrc1(), dex_location); in TEST_F()
285 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
291 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
296 std::string dex_location = GetScratchDir() + "/DexVerifyAtRuntimeOdexNoOat.jar"; in TEST_F() local
299 Copy(GetDexSrc1(), dex_location); in TEST_F()
300 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kExtract); in TEST_F()
302 Verify(dex_location, CompilerFilter::kExtract); in TEST_F()
303 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
308 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx"; in TEST_F() local
309 Copy(GetDexSrc1(), dex_location); in TEST_F()
311 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
316 std::string dex_location = "/xx"; in TEST_F() local
318 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()