(
self,
size: int,
address: int,
)
| 298 | return self._address |
| 299 | |
| 300 | def _make_stream_and_ptr( |
| 301 | self, |
| 302 | size: int, |
| 303 | address: int, |
| 304 | ) -> Tuple["ctypes._PointerLike", bytes]: |
| 305 | bytes_a = (ctypes.c_ubyte * size).from_address(address) |
| 306 | return self.make_ct_pointer(), bytes(bytes_a) |
| 307 | |
| 308 | @handle |
| 309 | def move( |