| 329 | } |
| 330 | |
| 331 | Result<int64_t> ReadableFile::DoReadAt(int64_t position, int64_t nbytes, |
| 332 | bool allow_short_read, void* out) { |
| 333 | return impl_->ReadAt(position, nbytes, allow_short_read, out); |
| 334 | } |
| 335 | |
| 336 | Result<std::shared_ptr<Buffer>> ReadableFile::DoReadAt(int64_t position, int64_t nbytes, |
| 337 | bool allow_short_read) { |