| 156 | uint64_t PersistentHeapAllocator::totalAlignedMemoryAllocated() const { return model.totalAlignedMemoryAllocated(); } |
| 157 | |
| 158 | bool PersistentHeapAllocator::isOwnPtr ( char * ptr, uint64_t size ) { return model.isOwnPtr(ptr,size); } |
| 159 | bool PersistentHeapAllocator::isValidPtr ( char * ptr, uint64_t size ) { return model.isAllocatedPtr(ptr,size); } |
| 160 | void PersistentHeapAllocator::setInitialSize ( uint64_t size ) { model.setInitialSize(size); } |
| 161 | int64_t PersistentHeapAllocator::getInitialSize() const { return model.initialSize; } |
no outgoing calls