MCPcopy Create free account
hub / github.com/apache/arrow / DoReadAt

Method DoReadAt

cpp/src/arrow/io/file.cc:325–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323}
324
325Result<int64_t> ReadableFile::DoReadAt(int64_t position, int64_t nbytes, void* out) {
326 return impl_->ReadAt(position, nbytes, out);
327}
328
329Result<std::shared_ptr<Buffer>> ReadableFile::DoReadAt(int64_t position, int64_t nbytes) {
330 return impl_->ReadBufferAt(position, nbytes);

Callers 2

ReadAsyncMethod · 0.45
ReadAtMethod · 0.45

Calls 2

ReadBufferAtMethod · 0.80
ReadAtMethod · 0.45

Tested by 1

ReadAsyncMethod · 0.36