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.h92 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const;
93 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const;
94 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const;
95 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const;
Dminidump.h232 bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const;
233 bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const;
234 bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const;
235 bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const;
Dstackwalker.h176 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.h68 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function
71 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function
74 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function
77 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function
Dstackwalker_x86.cc463 if (has_skipped_frames || !memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
471 if (!memory_->GetMemoryAtAddress(location, &ebp)) in GetCallerByWindowsFrameInfo()
474 if (memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo()
574 if (memory_->GetMemoryAtAddress(last_ebp + 4, &caller_eip) && in GetCallerByEBPAtBase()
575 memory_->GetMemoryAtAddress(last_ebp, &caller_ebp)) { in GetCallerByEBPAtBase()
601 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 __anon65ecfc9c0111::FakeMemoryRegion
67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon65ecfc9c0111::FakeMemoryRegion
71 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon65ecfc9c0111::FakeMemoryRegion
75 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon65ecfc9c0111::FakeMemoryRegion
Dstackwalker_amd64.cc183 if (memory_->GetMemoryAtAddress(last_rbp + 8, &caller_rip) && in GetCallerByFramePointerRecovery()
184 memory_->GetMemoryAtAddress(last_rbp, &caller_rbp)) { in GetCallerByFramePointerRecovery()
200 if (!memory_->GetMemoryAtAddress(caller_rbp, &unused)) { in GetCallerByFramePointerRecovery()
253 if (memory_->GetMemoryAtAddress(last_frame->context.rbp, &caller_rbp) && in GetCallerByStackScan()
Dstackwalker_ppc64.cc99 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
111 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.cc108 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
120 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
Dstackwalker_arm64.cc218 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
225 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer()
270 if (last_last_fp && !memory_->GetMemoryAtAddress(last_last_fp, &last_fp)) { in CorrectRegLRByFramePointer()
280 if (last_last_fp && !memory_->GetMemoryAtAddress(last_last_fp + 8, &last_lr)) { in CorrectRegLRByFramePointer()
Dminidump_processor_unittest.cc130 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
131 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
133 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
134 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
136 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
137 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
139 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in google_breakpad::MockMinidumpMemoryRegion
140 return region_.GetMemoryAtAddress(address, value); in GetMemoryAtAddress()
Dmicrodump.cc171 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
176 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
181 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
186 bool MicrodumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MicrodumpMemoryRegion
Dfast_source_line_resolver_unittest.cc97 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon3f974b530111::MockMemoryRegion
101 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon3f974b530111::MockMemoryRegion
105 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon3f974b530111::MockMemoryRegion
116 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon3f974b530111::MockMemoryRegion
Dstackwalker_arm.cc207 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer()
214 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
Dbasic_source_line_resolver_unittest.cc86 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anonae2751c70111::MockMemoryRegion
90 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anonae2751c70111::MockMemoryRegion
94 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anonae2751c70111::MockMemoryRegion
105 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anonae2751c70111::MockMemoryRegion
Dstackwalker_mips.cc328 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
394 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
Dpostfix_evaluator-inl.h159 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
Dstackwalk_common.cc188 memory->GetMemoryAtAddress(address, &value)) { in PrintStackContents()
209 memory->GetMemoryAtAddress(address, &data32); in PrintStackContents()
213 memory->GetMemoryAtAddress(address, &data64); in PrintStackContents()
Dminidump.cc1404 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1410 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1416 bool MinidumpMemoryRegion::GetMemoryAtAddress(uint64_t address, in GetMemoryAtAddress() function in google_breakpad::MinidumpMemoryRegion
1422 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