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

Method Read

cpp/src/arrow/ipc/reader.cc:2946–2950  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2944}
2945
2946Result<int64_t> IoRecordedRandomAccessFile::Read(int64_t nbytes, void* out) {
2947 ARROW_ASSIGN_OR_RAISE(int64_t bytes_read, ReadAt(position_, nbytes, out));
2948 position_ += bytes_read;
2949 return bytes_read;
2950}
2951
2952Result<std::shared_ptr<Buffer>> IoRecordedRandomAccessFile::Read(int64_t nbytes) {
2953 ARROW_ASSIGN_OR_RAISE(std::shared_ptr<Buffer> buffer, ReadAt(position_, nbytes));

Callers 5

DoPreBufferMetadataMethod · 0.45
TESTFunction · 0.45
CheckSliceMethod · 0.45
CheckRoundtripMethod · 0.45
TEST_PFunction · 0.45

Calls 1

ARROW_ASSIGN_OR_RAISEFunction · 0.70

Tested by 4

TESTFunction · 0.36
CheckSliceMethod · 0.36
CheckRoundtripMethod · 0.36
TEST_PFunction · 0.36