Home
last modified time | relevance | path

Searched defs:process_memory (Results 1 – 25 of 33) sorted by relevance

12

/system/unwinding/libunwindstack/benchmarks/
Dlocal_unwind_benchmarks.cpp36 std::shared_ptr<unwindstack::Memory>& process_memory; member
80 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_uncached_process_memory() local
92 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in BM_local_unwind_cached_process_memory() local
104 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_android_unwind_uncached_process_memory() local
128 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in BM_local_android_unwind_cached_process_memory() local
152 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_local_updatable_maps_uncached() local
164 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in BM_local_unwind_local_updatable_maps_cached() local
176 auto process_memory = unwindstack::Memory::CreateProcessMemoryThreadCached(getpid()); in BM_local_unwind_local_updatable_maps_thread_cached() local
188 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_uncached_process_memory_no_func_names() local
200 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in BM_local_unwind_cached_process_memory_no_func_names() local
[all …]
Dremote_unwind_benchmarks.cpp103 std::shared_ptr<unwindstack::Memory> process_memory; in RemoteUnwind() local
143 std::shared_ptr<unwindstack::Memory> process_memory; in RemoteAndroidUnwind() local
/system/core/debuggerd/libdebuggerd/
Dgwp_asan.cpp32 static bool retrieve_gwp_asan_state(unwindstack::Memory* process_memory, uintptr_t state_addr, in retrieve_gwp_asan_state()
43 unwindstack::Memory* process_memory, const gwp_asan::AllocatorState& state, in retrieve_gwp_asan_metadata()
70 GwpAsanCrashData::GwpAsanCrashData(unwindstack::Memory* process_memory, in GwpAsanCrashData()
Dscudo.cpp31 std::unique_ptr<char[]> AllocAndReadFully(unwindstack::Memory* process_memory, uint64_t addr, in AllocAndReadFully()
40 ScudoCrashData::ScudoCrashData(unwindstack::Memory* process_memory, in ScudoCrashData()
Dtombstone_proto.cpp262 std::shared_ptr<unwindstack::Memory>& process_memory, in dump_crash_details()
302 std::shared_ptr<unwindstack::Memory>& process_memory, in dump_abort_message()
537 std::shared_ptr<unwindstack::Memory>& process_memory) { in dump_mappings()
667 std::shared_ptr<unwindstack::Memory>& process_memory, in dump_tags_around_fault_addr()
Dtombstone.cpp109 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in engrave_tombstone_ucontext() local
/system/unwinding/libunwindstack/include/unwindstack/
DUnwinder.h56 Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory) in Unwinder()
62 Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory) in Unwinder()
126 Unwinder(size_t max_frames, ArchEnum arch, Maps* maps, std::shared_ptr<Memory>& process_memory) in Unwinder()
157 UnwinderFromPid(size_t max_frames, pid_t pid, std::shared_ptr<Memory>& process_memory) in UnwinderFromPid()
162 std::shared_ptr<Memory>& process_memory) in UnwinderFromPid()
DAndroidUnwinder.h120 AndroidLocalUnwinder(std::shared_ptr<Memory>& process_memory) in AndroidLocalUnwinder()
146 AndroidRemoteUnwinder(pid_t pid, std::shared_ptr<Memory>& process_memory) in AndroidRemoteUnwinder()
/system/unwinding/libunwindstack/
DRegsX86_64.cpp54 bool RegsX86_64::SetPcFromReturnAddress(Memory* process_memory) { in SetPcFromReturnAddress()
135 bool RegsX86_64::StepIfSignalHandler(uint64_t elf_offset, Elf* elf, Memory* process_memory) { in StepIfSignalHandler()
DRegsX86.cpp53 bool RegsX86::SetPcFromReturnAddress(Memory* process_memory) { in SetPcFromReturnAddress()
115 bool RegsX86::StepIfSignalHandler(uint64_t elf_offset, Elf* elf, Memory* process_memory) { in StepIfSignalHandler()
DElfInterfaceArm.cpp99 bool ElfInterfaceArm::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished, in Step()
109 bool ElfInterfaceArm::StepExidx(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in StepExidx()
DMapInfo.cpp179 std::shared_ptr<Memory> MapInfo::CreateMemory(const std::shared_ptr<Memory>& process_memory) { in CreateMemory()
276 Elf* MapInfo::GetElf(const std::shared_ptr<Memory>& process_memory, ArchEnum expected_arch) { in GetElf()
366 uint64_t MapInfo::GetLoadBias(const std::shared_ptr<Memory>& process_memory) { in GetLoadBias()
DElf.cpp184 bool Elf::StepIfSignalHandler(uint64_t rel_pc, Regs* regs, Memory* process_memory) { in StepIfSignalHandler()
197 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished, in Step()
DRegsArm.cpp99 bool RegsArm::StepIfSignalHandler(uint64_t elf_offset, Elf* elf, Memory* process_memory) { in StepIfSignalHandler()
DThreadUnwinder.cpp74 std::shared_ptr<Memory>& process_memory) in ThreadUnwinder()
DRegsRiscv64.cpp165 bool RegsRiscv64::StepIfSignalHandler(uint64_t elf_offset, Elf* elf, Memory* process_memory) { in StepIfSignalHandler()
DRegsArm64.cpp154 bool RegsArm64::StepIfSignalHandler(uint64_t elf_offset, Elf* elf, Memory* process_memory) { in StepIfSignalHandler()
DArmExidx.h55 ArmExidx(RegsArm* regs, Memory* elf_memory, Memory* process_memory) in ArmExidx()
DUnwinder.cpp418 std::shared_ptr<Memory> process_memory, in BuildFrameFromPcOnly()
/system/unwinding/libunwindstack/tests/
DMemoryRangeTest.cpp76 std::shared_ptr<Memory> process_memory(new MemoryFakeAlwaysReadZero); in TEST_F() local
DUnwindOfflineTest.cpp557 std::shared_ptr<Memory>& process_memory; member
585 std::shared_ptr<Memory> process_memory = offline_utils_.GetProcessMemory(); in TEST_F() local
938 std::shared_ptr<Memory> process_memory = offline_utils_.GetProcessMemory(); in TEST_F() local
1584 std::shared_ptr<Memory> process_memory(parts.release()); in TEST_F() local
1658 std::shared_ptr<Memory> process_memory(parts.release()); in TEST_F() local
DUnwinderTest.cpp1761 auto process_memory = Memory::CreateProcessMemoryCached(getpid()); in TEST_F() local
1777 std::shared_ptr<Memory> process_memory(new MemoryFake); in TEST_F() local
1800 std::shared_ptr<Memory> process_memory(new MemoryFake); in TEST_F() local
DUnwindTest.cpp151 auto process_memory(Memory::CreateProcessMemory(pid)); in VerifyUnwind() local
192 auto process_memory(Memory::CreateProcessMemory(getpid())); in InnerFunction() local
448 auto process_memory(Memory::CreateProcessMemory(getpid())); in TEST_F() local
/system/unwinding/libunwindstack/utils/
DOfflineUnwindUtils.h166 std::shared_ptr<Memory> process_memory; member
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp77 auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid()); in debuggerd_fallback_trace() local

12