/external/google-breakpad/src/google_breakpad/processor/ |
D | memory_region.h | 65 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;
|
D | microdump.h | 91 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;
|
D | stackwalker.h | 175 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress()
|
D | minidump.h | 230 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/ |
D | cfi_frame_info_unittest.cc | 62 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()
|
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 | disassembler_objdump_unittest.cc | 61 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
|
D | postfix_evaluator_unittest.cc | 66 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
|
D | stackwalker_selftest.cc | 113 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
|
D | stackwalker_x86.cc | 477 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()
|
D | stackwalker_ppc64.cc | 102 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 114 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) || in GetCallerFrame()
|
D | stackwalker_sparc.cc | 106 if (!memory_->GetMemoryAtAddress(stack_pointer + 60, in GetCallerFrame() 112 if (!memory_->GetMemoryAtAddress(stack_pointer + 56, in GetCallerFrame()
|
D | stackwalker_ppc.cc | 111 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 123 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
|
D | stackwalker_arm64.cc | 224 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()
|
D | stackwalker_amd64.cc | 191 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()
|
D | microdump.cc | 174 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
|
D | minidump_processor_unittest.cc | 133 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()
|
D | stackwalker_arm.cc | 211 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 218 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer()
|
D | fast_source_line_resolver_unittest.cc | 99 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
|
D | stackwalker_mips.cc | 332 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan() 398 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
|
D | basic_source_line_resolver_unittest.cc | 88 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
|
D | postfix_evaluator-inl.h | 158 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
|
D | stackwalker_riscv.cc | 459 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 466 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_ra)) { in GetCallerByFramePointer()
|
D | stackwalker_riscv64.cc | 459 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 466 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_ra)) { in GetCallerByFramePointer()
|
D | disassembler_objdump.cc | 460 if (!memory_region->GetMemoryAtAddress(address + ip_bytes_length, in DisassemblerObjdump()
|