| 497 | } |
| 498 | |
| 499 | int64_t |
| 500 | TSIOBufferReaderCopy(TSIOBufferReader readerp, void *buf, int64_t length) |
| 501 | { |
| 502 | auto r{reinterpret_cast<IOBufferReader *>(readerp)}; |
| 503 | char *limit = r->memcpy(buf, length, 0); |
| 504 | return limit - static_cast<char *>(buf); |
| 505 | } |
| 506 | |
| 507 | void |
| 508 | TSIOBufferProduce(TSIOBuffer bufp, int64_t nbytes) |