(self, link, io_timeout, lock_timeout, flags, data)
| 207 | self.unpacker.unpack_create_link_resp) |
| 208 | |
| 209 | def device_write(self, link, io_timeout, lock_timeout, flags, data): |
| 210 | params = (link, io_timeout, lock_timeout, flags, data) |
| 211 | return self.make_call(DEVICE_WRITE, params, |
| 212 | self.packer.pack_device_write_parms, |
| 213 | self.unpacker.unpack_device_write_resp) |
| 214 | |
| 215 | def device_read(self, link, request_size, io_timeout, lock_timeout, flags, term_char): |
| 216 | params = (link, request_size, io_timeout, lock_timeout, flags, term_char) |