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

Method OutOfMemory

cpp/src/arrow/memory_pool.cc:886–892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

884}
885
886Status CappedMemoryPool::OutOfMemory(int64_t current_allocated, int64_t requested) const {
887 return Status::OutOfMemory(
888 "MemoryPool bytes_allocated cap exceeded: "
889 "limit=",
890 bytes_allocated_limit_, ", current allocation=", current_allocated,
891 ", requested=", requested);
892}
893
894// -----------------------------------------------------------------------
895// Pool buffer and allocation

Callers

nothing calls this directly

Calls 1

OutOfMemoryFunction · 0.85

Tested by

no test coverage detected