Home
last modified time | relevance | path

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

/external/google-breakpad/src/google_breakpad/processor/
Dmemory_region.h66 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const = 0;
67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0;
68 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0;
69 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
Dmicrodump.h86 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const;
87 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const;
88 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const;
89 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const;
Dminidump.h224 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const;
225 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const;
226 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const;
227 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const;
Dstackwalker.h166 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress()
/external/google-breakpad/src/processor/
Dcfi_frame_info_unittest.cc59 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint8_t *));
60 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint16_t *));
61 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint32_t *));
62 MOCK_CONST_METHOD2(GetMemoryAtAddress, bool(uint64_t, uint64_t *));
73 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint8_t *>())).Times(0); in ExpectNoMemoryReferences()
74 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint16_t *>())).Times(0); in ExpectNoMemoryReferences()
75 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint32_t *>())).Times(0); in ExpectNoMemoryReferences()
76 EXPECT_CALL(memory, GetMemoryAtAddress(_, A<uint64_t *>())).Times(0); in ExpectNoMemoryReferences()
512 GetMemoryAtAddress(stack_top, A<uint64_t *>())) in TEST_F()
517 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
Dstackwalker_x86.cc453 if (has_skipped_frames || !memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
461 if (!memory_->GetMemoryAtAddress(location, &ebp)) in GetCallerByWindowsFrameInfo()
464 if (memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
564 if (memory_->GetMemoryAtAddress(last_ebp + 4, &caller_eip) && in GetCallerByEBPAtBase()
565 memory_->GetMemoryAtAddress(last_ebp, &caller_ebp)) { in GetCallerByEBPAtBase()
591 if (!memory_->GetMemoryAtAddress(restored_ebp_chain, &caller_ebp) || in GetCallerByEBPAtBase()
Dstackwalker_selftest.cc110 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
112 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
114 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
116 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const { in GetMemoryAtAddress() function in SelfMemoryRegion
Dpostfix_evaluator_unittest.cc63 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anona2b258650111::FakeMemoryRegion
67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anona2b258650111::FakeMemoryRegion
71 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anona2b258650111::FakeMemoryRegion
75 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anona2b258650111::FakeMemoryRegion
Dminidump_processor_unittest.cc114 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
115 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
117 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
118 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
120 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
121 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
123 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
124 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
Dmicrodump.cc129 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
134 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
139 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
144 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
Dstackwalker_ppc64.cc98 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
110 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) || in GetCallerFrame()
Dstackwalker_sparc.cc103 if (!memory_->GetMemoryAtAddress(stack_pointer + 60, in GetCallerFrame()
109 if (!memory_->GetMemoryAtAddress(stack_pointer + 56, in GetCallerFrame()
Dstackwalker_ppc.cc107 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
119 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
Dstackwalker_amd64.cc173 if (memory_->GetMemoryAtAddress(last_rbp + 8, &caller_rip) && in GetCallerByFramePointerRecovery()
174 memory_->GetMemoryAtAddress(last_rbp, &caller_rbp)) { in GetCallerByFramePointerRecovery()
230 if (memory_->GetMemoryAtAddress(last_frame->context.rbp, &caller_rbp) && in GetCallerByStackScan()
Dfast_source_line_resolver_unittest.cc94 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon233c601c0111::MockMemoryRegion
98 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon233c601c0111::MockMemoryRegion
102 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon233c601c0111::MockMemoryRegion
113 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon233c601c0111::MockMemoryRegion
Dstackwalker_arm64.cc192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
199 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer()
Dbasic_source_line_resolver_unittest.cc83 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon066effb00111::MockMemoryRegion
87 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon066effb00111::MockMemoryRegion
91 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon066effb00111::MockMemoryRegion
102 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon066effb00111::MockMemoryRegion
Dstackwalker_arm.cc206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
213 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
Dpostfix_evaluator-inl.h159 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
Dstackwalker_mips.cc252 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
Dstackwalk_common.cc188 memory->GetMemoryAtAddress(address, &value)) { in PrintStackContents()
209 memory->GetMemoryAtAddress(address, &data32); in PrintStackContents()
213 memory->GetMemoryAtAddress(address, &data64); in PrintStackContents()
Dminidump.cc1321 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1327 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1333 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1339 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/
Dbreakpad_unittests.sym35206 FUNC 4ea9c 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
35256 FUNC 4ec98 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
35306 FUNC 4ee94 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
35356 FUNC 4f098 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/
Dbreakpad_unittests.sym36859 FUNC 755d4 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
36913 FUNC 75820 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
36967 FUNC 75a6c 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress
37021 FUNC 75cb8 4 0 google_breakpad::MinidumpMemoryRegion::GetMemoryAtAddress