HomeSort by relevance Sort by last modified time
    Searched refs:dex_files (Results 1 - 15 of 15) 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);
dex_method_iterator.h 28 explicit DexMethodIterator(const std::vector<const DexFile*>& dex_files)
29 : dex_files_(dex_files),
oat.h 35 const std::vector<const DexFile*>* dex_files,
oat.cc 32 const std::vector<const DexFile*>* dex_files,
45 dex_file_count_ = dex_files->size();
  /art/compiler/
elf_writer_quick.h 29 const std::vector<const DexFile*>& dex_files,
37 const std::vector<const DexFile*>& dex_files,
elf_writer_mclinker.h 44 const std::vector<const DexFile*>& dex_files,
52 const std::vector<const DexFile*>& dex_files,
63 void AddMethodInputs(const std::vector<const DexFile*>& dex_files);
68 void FixupOatMethodOffsets(const std::vector<const DexFile*>& dex_files)
elf_writer.h 54 const std::vector<const DexFile*>& dex_files,
elf_writer_mclinker.cc 52 const std::vector<const DexFile*>& dex_files,
57 return elf_writer.Write(oat_writer, dex_files, android_root, is_host);
61 const std::vector<const DexFile*>& dex_files,
73 AddMethodInputs(dex_files);
81 FixupOatMethodOffsets(dex_files);
237 void ElfWriterMclinker::AddMethodInputs(const std::vector<const DexFile*>& dex_files) {
240 DexMethodIterator it(dex_files);
346 void ElfWriterMclinker::FixupOatMethodOffsets(const std::vector<const DexFile*>& dex_files) {
351 DexMethodIterator it(dex_files);
oat_test.cc 152 std::vector<const DexFile*> dex_files; local
157 &dex_files,
oat_writer.h 65 OatWriter(const std::vector<const DexFile*>& dex_files,
elf_writer_quick.cc 38 const std::vector<const DexFile*>& dex_files,
43 return elf_writer.Write(oat_writer, dex_files, android_root, is_host);
oat_writer.cc 38 OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
44 dex_files_(&dex_files),
    [all...]
  /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.h 99 void CompileAll(jobject class_loader, const std::vector<const DexFile*>& dex_files,
227 const std::vector<const DexFile*>& dex_files,
330 void PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
339 void Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
346 void Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
352 void InitializeClasses(jobject class_loader, const std::vector<const DexFile*>& dex_files,
363 void Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
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 609 milliseconds