(self, address)
| 804 | return ctypes.c_uint32.from_buffer(self.minidump, location).value |
| 805 | |
| 806 | def ReadU64(self, address): |
| 807 | location = self.FindLocation(address) |
| 808 | return ctypes.c_uint64.from_buffer(self.minidump, location).value |
| 809 | |
| 810 | def Is64(self): |
| 811 | return (self.arch == MD_CPU_ARCHITECTURE_ARM64 or |
no test coverage detected