| 58 | } |
| 59 | |
| 60 | void OffsetMemoryPool::release(MemoryMappings &handles) |
| 61 | { |
| 62 | for (auto &handle : handles) |
| 63 | { |
| 64 | ARM_COMPUTE_ERROR_ON(handle.first == nullptr); |
| 65 | handle.first->set_region(nullptr); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | MappingType OffsetMemoryPool::mapping_type() const |
| 70 | { |
nothing calls this directly
no test coverage detected