| 208 | // to use the exclusive_guard. |
| 209 | |
| 210 | Result<int64_t> ReadAt(int64_t position, int64_t nbytes, void* out) final { |
| 211 | return ReadAt(position, nbytes, /*allow_short_read=*/true, out); |
| 212 | } |
| 213 | |
| 214 | Result<int64_t> ReadAt(int64_t position, int64_t nbytes, bool allow_short_read, |
| 215 | void* out) final { |