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

Method ReadAt

cpp/src/arrow/io/interfaces.cc:152–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150RandomAccessFile::RandomAccessFile() : interface_impl_(new Impl()) {}
151
152Result<int64_t> RandomAccessFile::ReadAt(int64_t position, int64_t nbytes, void* out) {
153 std::lock_guard<std::mutex> lock(interface_impl_->lock_);
154 RETURN_NOT_OK(Seek(position));
155 return Read(nbytes, out);
156}
157
158Result<std::shared_ptr<Buffer>> RandomAccessFile::ReadAt(int64_t position,
159 int64_t nbytes) {

Callers 1

ReadAsyncMethod · 0.95

Calls 1

ReadFunction · 0.70

Tested by

no test coverage detected