(self, offset, size)
| 286 | |
| 287 | # Remove some memory of the given size from the current write buffer |
| 288 | def remove(self, offset, size): |
| 289 | self.buffer.remove(offset, size) |
| 290 | |
| 291 | # Reserve memory of the given capacity in the current write buffer |
| 292 | def reserve(self, capacity): |