Home
last modified time | relevance | path

Searched refs:GetMemoryAtAddress (Results 1 – 25 of 29) sorted by relevance

12

/external/google-breakpad/src/google_breakpad/processor/
Dmemory_region.h65 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const = 0;
66 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0;
67 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0;
68 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
Dmicrodump.h91 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const;
92 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const;
93 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const;
94 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const;
Dstackwalker.h175 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress()
Dminidump.h230 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const override;
231 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const override;
232 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const override;
233 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const override;
/external/google-breakpad/src/processor/
Dcfi_frame_info_unittest.cc62 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint8_t*));
63 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint16_t*));
64 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint32_t*));
65 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint64_t*));
76 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint8_t*>())).Times(0); in ExpectNoMemoryReferences()
77 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint16_t*>())).Times(0); in ExpectNoMemoryReferences()
78 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint32_t*>())).Times(0); in ExpectNoMemoryReferences()
79 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint64_t*>())).Times(0); in ExpectNoMemoryReferences()
518 GetMemoryAtAddress(stack_top, A<uint64_t*>())) in TEST_F()
523 GetMemoryAtAddress(stack_top + 16, A<uint64_t*>())) in TEST_F()
Dstackwalker_unittest_utils.h67 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function
70 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function
73 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function
76 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function
Ddisassembler_objdump_unittest.cc61 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const override;
62 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const override;
63 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const override;
64 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const override;
84 bool TestMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::TestMemoryRegion
96 bool TestMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::TestMemoryRegion
101 bool TestMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::TestMemoryRegion
106 bool TestMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::TestMemoryRegion
Dpostfix_evaluator_unittest.cc66 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in __anonf9078d520111::FakeMemoryRegion
70 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in __anonf9078d520111::FakeMemoryRegion
74 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in __anonf9078d520111::FakeMemoryRegion
78 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in __anonf9078d520111::FakeMemoryRegion
Dstackwalker_selftest.cc113 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
115 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
117 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
119 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
Dstackwalker_x86.cc477 if (has_skipped_frames || !memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
485 if (!memory_->GetMemoryAtAddress(location, &ebp)) in GetCallerByWindowsFrameInfo()
488 if (memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
594 if (memory_->GetMemoryAtAddress(last_ebp + 4, &caller_eip) && in GetCallerByEBPAtBase()
595 memory_->GetMemoryAtAddress(last_ebp, &caller_ebp)) { in GetCallerByEBPAtBase()
622 if (!memory_->GetMemoryAtAddress(restored_ebp_chain, &caller_ebp) || in GetCallerByEBPAtBase()
Dstackwalker_ppc64.cc102 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
114 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) || in GetCallerFrame()
Dstackwalker_sparc.cc106 if (!memory_->GetMemoryAtAddress(stack_pointer + 60, in GetCallerFrame()
112 if (!memory_->GetMemoryAtAddress(stack_pointer + 56, in GetCallerFrame()
Dstackwalker_ppc.cc111 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
123 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
Dstackwalker_arm64.cc224 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
231 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer()
276 if (last_last_fp && !memory_->GetMemoryAtAddress(last_last_fp, &last_fp)) { in CorrectRegLRByFramePointer()
286 if (last_last_fp && !memory_->GetMemoryAtAddress(last_last_fp + 8, &last_lr)) { in CorrectRegLRByFramePointer()
Dstackwalker_amd64.cc191 if (memory_->GetMemoryAtAddress(last_rbp + 8, &caller_rip) && in GetCallerByFramePointerRecovery()
192 memory_->GetMemoryAtAddress(last_rbp, &caller_rbp)) { in GetCallerByFramePointerRecovery()
208 if (!memory_->GetMemoryAtAddress(caller_rbp, &unused)) { in GetCallerByFramePointerRecovery()
291 if (memory_->GetMemoryAtAddress(last_frame->context.rbp, &caller_rbp) && in GetCallerByStackScan()
Dmicrodump.cc174 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
179 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
184 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
189 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
Dminidump_processor_unittest.cc133 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
134 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
136 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
137 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
139 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
140 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
142 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
143 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
Dstackwalker_arm.cc211 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
218 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
Dfast_source_line_resolver_unittest.cc99 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in __anon1cba32090111::MockMemoryRegion
103 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in __anon1cba32090111::MockMemoryRegion
107 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in __anon1cba32090111::MockMemoryRegion
118 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in __anon1cba32090111::MockMemoryRegion
Dstackwalker_mips.cc332 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
398 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
Dbasic_source_line_resolver_unittest.cc88 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in __anon2fa70f3d0111::MockMemoryRegion
92 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in __anon2fa70f3d0111::MockMemoryRegion
96 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in __anon2fa70f3d0111::MockMemoryRegion
107 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in __anon2fa70f3d0111::MockMemoryRegion
Dpostfix_evaluator-inl.h158 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
Dstackwalker_riscv.cc459 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
466 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_ra)) { in GetCallerByFramePointer()
Dstackwalker_riscv64.cc459 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
466 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_ra)) { in GetCallerByFramePointer()
Ddisassembler_objdump.cc460 if (!memory_region->GetMemoryAtAddress(address + ip_bytes_length, in DisassemblerObjdump()

12