Home
last modified time | relevance | path

Searched refs:CreateFileMemory (Results 1 – 9 of 9) sorted by relevance

/system/unwinding/libunwindstack/include/unwindstack/
DMemory.h41 static std::unique_ptr<Memory> CreateFileMemory(const std::string& path, uint64_t offset,
/system/unwinding/libunwindstack/tools/
Dunwind_symbols.cpp62 unwindstack::Elf elf(unwindstack::Memory::CreateFileMemory(argv[1], 0).release()); in main()
Dunwind_info.cpp109 Elf elf(Memory::CreateFileMemory(file, offset).release()); in GetElfInfo()
Dunwind_reg_info.cpp175 Elf elf(Memory::CreateFileMemory(file, offset).release()); in GetInfo()
/system/unwinding/libunwindstack/tests/
DVerifyBionicTerminationTest.cpp72 Elf elf(Memory::CreateFileMemory(frame.map_name, 0).release()); in VerifyReturnAddress()
/system/unwinding/libunwindstack/benchmarks/
DElfBenchmark.cpp45 auto file_memory = unwindstack::Memory::CreateFileMemory(elf_file, 0); in BenchmarkElfCreate()
DSymbolBenchmark.cpp48 unwindstack::Elf elf(unwindstack::Memory::CreateFileMemory(elf_file, 0).release()); in BenchmarkSymbolLookup()
/system/unwinding/libunwindstack/
DDexFile.cpp72 std::unique_ptr<Memory> memory = Memory::CreateFileMemory(map->name(), offset_in_file, size); in CreateFromDisk()
DMemory.cpp204 std::unique_ptr<Memory> Memory::CreateFileMemory(const std::string& path, uint64_t offset, in CreateFileMemory() function in unwindstack::Memory