(self, address)
| 849 | return ctypes.c_uint32.from_buffer(self.minidump, location).value |
| 850 | |
| 851 | def ReadAsciiPtr(self, address): |
| 852 | ascii_content = [ |
| 853 | chr(c) if c >= 0x20 and c < 0x7f else '.' |
| 854 | for c in self.ReadBytes(address, self.MachinePointerSize()) |
| 855 | ] |
| 856 | return ''.join(ascii_content) |
| 857 | |
| 858 | def ReadAsciiString(self, address): |
| 859 | string = "" |
no test coverage detected