(self, address)
| 796 | return None |
| 797 | |
| 798 | def ReadU8(self, address): |
| 799 | location = self.FindLocation(address) |
| 800 | return ctypes.c_uint8.from_buffer(self.minidump, location).value |
| 801 | |
| 802 | def ReadU32(self, address): |
| 803 | location = self.FindLocation(address) |
no test coverage detected