| 769 | explicit ProxyMemoryPoolImpl(MemoryPool* pool) : pool_(pool) {} |
| 770 | |
| 771 | Status Allocate(int64_t size, int64_t alignment, uint8_t** out) { |
| 772 | RETURN_NOT_OK(pool_->Allocate(size, alignment, out)); |
| 773 | stats_.DidAllocateBytes(size); |
| 774 | return Status::OK(); |
| 775 | } |
| 776 | |
| 777 | Status Reallocate(int64_t old_size, int64_t new_size, int64_t alignment, |
| 778 | uint8_t** ptr) { |
nothing calls this directly
no test coverage detected