| 884 | } |
| 885 | |
| 886 | Status 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 |
nothing calls this directly
no test coverage detected