Home
last modified time | relevance | path

Searched refs:MemoryDexFileContainer (Results 1 – 10 of 10) sorted by relevance

/art/tools/fuzzer/
Dlibart_verify_dex_fuzzer.cc31 auto container = std::make_shared<art::MemoryDexFileContainer>(data, size); in LLVMFuzzerTestOneInput()
/art/libdexfile/dex/
Ddex_file_loader.cc251 : 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()
Dfuzzer_corpus_test.cc45 auto container = std::make_shared<art::MemoryDexFileContainer>(data, size); in VerifyDexFile()
Ddex_file.h92 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);
Ddex_file_verifier_test.cc62 auto container = std::make_shared<MemoryDexFileContainer>(dex_bytes, length); in GetDexFile()
/art/runtime/
Dvdex_file.cc218 auto dex_file_container = std::make_shared<MemoryDexFileContainer>(Begin(), End()); in OpenAllDexFiles()
Dclass_linker_test.cc1548 std::make_shared<MemoryDexFileContainer>(old_dex_file->Begin(), old_dex_file->Size()); in TEST_F()
/art/compiler/optimizing/
Doptimizing_unit_test.h243 std::make_shared<MemoryDexFileContainer>(dex_data, sizeof(StandardDexFile::Header));
/art/runtime/oat/
Doat_file.cc916 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/
Doat_writer.cc447 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()