/external/google-breakpad/src/google_breakpad/processor/ |
D | memory_region.h | 66 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;
|
D | microdump.h | 86 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;
|
D | minidump.h | 224 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;
|
D | stackwalker.h | 166 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress()
|
/external/google-breakpad/src/processor/ |
D | cfi_frame_info_unittest.cc | 59 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()
|
D | stackwalker_unittest_utils.h | 67 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
|
D | stackwalker_x86.cc | 453 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()
|
D | stackwalker_selftest.cc | 110 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
|
D | postfix_evaluator_unittest.cc | 63 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
|
D | minidump_processor_unittest.cc | 114 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()
|
D | microdump.cc | 129 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
|
D | stackwalker_ppc64.cc | 98 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 110 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) || in GetCallerFrame()
|
D | stackwalker_sparc.cc | 103 if (!memory_->GetMemoryAtAddress(stack_pointer + 60, in GetCallerFrame() 109 if (!memory_->GetMemoryAtAddress(stack_pointer + 56, in GetCallerFrame()
|
D | stackwalker_ppc.cc | 107 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 119 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
|
D | stackwalker_amd64.cc | 173 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()
|
D | fast_source_line_resolver_unittest.cc | 94 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
|
D | stackwalker_arm64.cc | 192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 199 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer()
|
D | basic_source_line_resolver_unittest.cc | 83 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
|
D | stackwalker_arm.cc | 206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 213 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
|
D | postfix_evaluator-inl.h | 159 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
|
D | stackwalker_mips.cc | 252 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
|
D | stackwalk_common.cc | 188 memory->GetMemoryAtAddress(address, &value)) { in PrintStackContents() 209 memory->GetMemoryAtAddress(address, &data32); in PrintStackContents() 213 memory->GetMemoryAtAddress(address, &data64); in PrintStackContents()
|
D | minidump.cc | 1321 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/ |
D | breakpad_unittests.sym | 35206 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/ |
D | breakpad_unittests.sym | 36859 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
|