| 197 | } |
| 198 | |
| 199 | Result<std::unique_ptr<Buffer>> CPUMemoryManager::AllocateBuffer(int64_t size) { |
| 200 | return ::arrow::AllocateBuffer(size, pool_); |
| 201 | } |
| 202 | |
| 203 | Result<std::shared_ptr<Buffer>> CPUMemoryManager::CopyBufferFrom( |
| 204 | const std::shared_ptr<Buffer>& buf, const std::shared_ptr<MemoryManager>& from) { |
nothing calls this directly
no test coverage detected