HomeSort by relevance Sort by last modified time
    Searched defs:dex_files (Results 1 - 4 of 4) sorted by null

  /art/runtime/
dex_method_iterator_test.cc 27 std::vector<const DexFile*> dex_files; local
28 dex_files.push_back(DexFile::Open(GetDexFileName("core"), GetDexFileName("core")));
29 dex_files.push_back(DexFile::Open(GetDexFileName("conscrypt"), GetDexFileName("conscrypt")));
30 dex_files.push_back(DexFile::Open(GetDexFileName("okhttp"), GetDexFileName("okhttp")));
31 dex_files.push_back(DexFile::Open(GetDexFileName("core-junit"), GetDexFileName("core-junit")));
32 dex_files.push_back(DexFile::Open(GetDexFileName("bouncycastle"), GetDexFileName("bouncycastle")));
33 DexMethodIterator it(dex_files);
43 STLDeleteElements(&dex_files);
  /art/compiler/
oat_test.cc 152 std::vector<const DexFile*> dex_files; local
157 &dex_files,
  /art/dex2oat/
dex2oat.cc 230 const std::vector<const DexFile*>& dex_files,
242 std::vector<const DexFile*> class_path_files(dex_files);
266 driver->CompileAll(class_loader, dex_files, timings);
283 OatWriter oat_writer(dex_files,
289 if (!driver->WriteElf(android_root, is_host, dex_files, oat_writer, oat_file)) {
359 // Appends to dex_files any elements of class_path that it doesn't already
362 std::vector<const DexFile*>& dex_files) {
368 if (DexFilesContains(dex_files, parsed[i])) {
375 dex_files.push_back(dex_file);
380 // Returns true if dex_files has a dex with the named location
905 std::vector<const DexFile*> dex_files; local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 489 const std::vector<const DexFile*>& dex_files,
493 PreCompile(class_loader, dex_files, *thread_pool.get(), timings);
494 Compile(class_loader, dex_files, *thread_pool.get(), timings);
553 std::vector<const DexFile*> dex_files; local
554 dex_files.push_back(dex_file);
557 PreCompile(jclass_loader, dex_files, *thread_pool.get(), timings);
577 void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
579 for (size_t i = 0; i != dex_files.size(); ++i) {
580 const DexFile* dex_file = dex_files[i];
586 void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
    [all...]

Completed in 29 milliseconds