Specify where read() should store pointers to read data, as well as read data size. The sizes must match those passed to setup_writing(). */
| 103 | data size. The sizes must match those passed to setup_writing(). |
| 104 | */ |
| 105 | void setup_reading(size_t len1, size_t len2) |
| 106 | { |
| 107 | DBUG_ASSERT(len1 == size1); |
| 108 | DBUG_ASSERT(len2 == size2); |
| 109 | } |
| 110 | |
| 111 | bool can_write() |
| 112 | { |
no outgoing calls
no test coverage detected