Searched refs:MemoryDexFileContainer (Results 1 – 10 of 10) sorted by relevance
/art/tools/fuzzer/ |
D | libart_verify_dex_fuzzer.cc | 31 auto container = std::make_shared<art::MemoryDexFileContainer>(data, size); in LLVMFuzzerTestOneInput()
|
/art/libdexfile/dex/ |
D | dex_file_loader.cc | 251 : DexFileLoader(std::make_shared<MemoryDexFileContainer>(base, base + size), location) {} in DexFileLoader() 449 container = std::make_shared<MemoryDexFileContainer>(base, app_compat_size); in OpenCommon() 632 struct NewContainer : public MemoryDexFileContainer { in OpenCommon() 633 using MemoryDexFileContainer::MemoryDexFileContainer; // ctor. in OpenCommon()
|
D | fuzzer_corpus_test.cc | 45 auto container = std::make_shared<art::MemoryDexFileContainer>(data, size); in VerifyDexFile()
|
D | dex_file.h | 92 class MemoryDexFileContainer : public DexFileContainer { 94 MemoryDexFileContainer(const uint8_t* begin, const uint8_t* end) : begin_(begin), end_(end) {} in MemoryDexFileContainer() function 95 MemoryDexFileContainer(const uint8_t* begin, size_t size) : begin_(begin), end_(begin + size) {} in MemoryDexFileContainer() function 105 DISALLOW_COPY_AND_ASSIGN(MemoryDexFileContainer);
|
D | dex_file_verifier_test.cc | 62 auto container = std::make_shared<MemoryDexFileContainer>(dex_bytes, length); in GetDexFile()
|
/art/runtime/ |
D | vdex_file.cc | 218 auto dex_file_container = std::make_shared<MemoryDexFileContainer>(Begin(), End()); in OpenAllDexFiles()
|
D | class_linker_test.cc | 1548 std::make_shared<MemoryDexFileContainer>(old_dex_file->Begin(), old_dex_file->Size()); in TEST_F()
|
/art/compiler/optimizing/ |
D | optimizing_unit_test.h | 243 std::make_shared<MemoryDexFileContainer>(dex_data, sizeof(StandardDexFile::Header));
|
/art/runtime/oat/ |
D | oat_file.cc | 916 dex_file_container = std::make_shared<MemoryDexFileContainer>(DexBegin(), DexEnd()); in Setup() 1741 std::make_shared<MemoryDexFileContainer>(vdex_file->Begin(), vdex_file->End()); in Open()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 447 auto container = std::make_shared<MemoryDexFileContainer>(vdex_file.Begin(), vdex_file.End()); in AddVdexDexFilesSource() 3479 auto dex_container = std::make_shared<MemoryDexFileContainer>(vdex_begin_, vdex_size_); in OpenDexFiles()
|