/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 | 92 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;
|
D | stackwalker.h | 176 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress()
|
D | minidump.h | 232 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;
|
/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 | 68 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
|
D | stackwalker_x86.cc | 463 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()
|
D | postfix_evaluator_unittest.cc | 63 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon0bcf05030111::FakeMemoryRegion 67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon0bcf05030111::FakeMemoryRegion 71 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon0bcf05030111::FakeMemoryRegion 75 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon0bcf05030111::FakeMemoryRegion
|
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 | stackwalker_amd64.cc | 183 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()
|
D | stackwalker_ppc64.cc | 99 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 111 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 | 108 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 120 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
|
D | stackwalker_arm64.cc | 218 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()
|
D | minidump_processor_unittest.cc | 130 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()
|
D | microdump.cc | 171 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
|
D | fast_source_line_resolver_unittest.cc | 97 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon6912caba0111::MockMemoryRegion 101 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon6912caba0111::MockMemoryRegion 105 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon6912caba0111::MockMemoryRegion 116 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon6912caba0111::MockMemoryRegion
|
D | stackwalker_arm.cc | 207 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 214 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
|
D | basic_source_line_resolver_unittest.cc | 86 bool GetMemoryAtAddress(uint64_t address, uint8_t *value) const { in GetMemoryAtAddress() function in __anon0712be0e0111::MockMemoryRegion 90 bool GetMemoryAtAddress(uint64_t address, uint16_t *value) const { in GetMemoryAtAddress() function in __anon0712be0e0111::MockMemoryRegion 94 bool GetMemoryAtAddress(uint64_t address, uint32_t *value) const { in GetMemoryAtAddress() function in __anon0712be0e0111::MockMemoryRegion 105 bool GetMemoryAtAddress(uint64_t address, uint64_t *value) const { in GetMemoryAtAddress() function in __anon0712be0e0111::MockMemoryRegion
|
D | stackwalker_mips.cc | 328 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan() 394 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
|
D | postfix_evaluator-inl.h | 159 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
|
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 | 1404 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/ |
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
|