Reads the requested number of bytes from the process memory at the given address. Subclasses of L{Pattern} tipically don't need to reimplement this method.
(self, process, address, size)
| 108 | raise NotImplementedError() |
| 109 | |
| 110 | def read(self, process, address, size): |
| 111 | """ |
| 112 | Reads the requested number of bytes from the process memory at the |
| 113 | given address. |
| 114 | |
| 115 | Subclasses of L{Pattern} tipically don't need to reimplement this |
| 116 | method. |
| 117 | """ |
| 118 | return process.read(address, size) |
| 119 | |
| 120 | def find(self, buffer, pos=None): |
| 121 | """ |
no outgoing calls
no test coverage detected