| 385 | } |
| 386 | |
| 387 | Result<int64_t> BufferReader::DoGetSize() { |
| 388 | RETURN_NOT_OK(CheckClosed()); |
| 389 | return size_; |
| 390 | } |
| 391 | |
| 392 | Status BufferReader::DoSeek(int64_t position) { |
| 393 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected