(self, location)
| 844 | return self.minidump[location:location + size] |
| 845 | |
| 846 | def _ReadWord(self, location): |
| 847 | if self.Is64(): |
| 848 | return ctypes.c_uint64.from_buffer(self.minidump, location).value |
| 849 | return ctypes.c_uint32.from_buffer(self.minidump, location).value |
| 850 | |
| 851 | def ReadAsciiPtr(self, address): |
| 852 | ascii_content = [ |
no test coverage detected