(self, address, size)
| 840 | return self.ReadU32(address) |
| 841 | |
| 842 | def ReadBytes(self, address, size): |
| 843 | location = self.FindLocation(address) |
| 844 | return self.minidump[location:location + size] |
| 845 | |
| 846 | def _ReadWord(self, location): |
| 847 | if self.Is64(): |
no test coverage detected