Home
last modified time | relevance | path

Searched refs:dex_file_offset_in_memory (Results 1 – 2 of 2) sorted by relevance

/system/core/libunwindstack/
DDexFile.cpp51 std::unique_ptr<DexFile> DexFile::Create(uint64_t dex_file_offset_in_memory, Memory* memory, in Create() argument
57 size_t max_size = info->end - dex_file_offset_in_memory; in Create()
63 reinterpret_cast<void const*>(dex_file_offset_in_memory), &size, info->name, &err_msg); in Create()
71 DexFileFromFile::Create(dex_file_offset_in_memory - info->start + info->offset, info->name); in Create()
76 return DexFileFromMemory::Create(dex_file_offset_in_memory, memory, info->name, max_size); in Create()
111 std::unique_ptr<DexFileFromMemory> DexFileFromMemory::Create(uint64_t dex_file_offset_in_memory, in Create() argument
139 if (!memory->ReadFully(dex_file_offset_in_memory, backing_memory.data(), in Create()
DDexFile.h38 static std::unique_ptr<DexFile> Create(uint64_t dex_file_offset_in_memory, Memory* memory,
57 static std::unique_ptr<DexFileFromMemory> Create(uint64_t dex_file_offset_in_memory,