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

Method LoadBinary

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

Source from the content-addressed store, hash-verified

350 }
351
352 Status LoadBinary(Type::type type_id) {
353 DCHECK_NE(out_, nullptr);
354 out_->buffers.resize(3);
355
356 RETURN_NOT_OK(LoadCommon(type_id));
357 RETURN_NOT_OK(GetBuffer(buffer_index_++, &out_->buffers[1]));
358 return GetBuffer(buffer_index_++, &out_->buffers[2]);
359 }
360
361 template <typename TYPE>
362 Status LoadList(const TYPE& type) {

Callers

nothing calls this directly

Calls 2

GetBufferFunction · 0.85
resizeMethod · 0.80

Tested by

no test coverage detected