| 55 | } |
| 56 | |
| 57 | void BlobMemoryPool::release(MemoryMappings &handles) |
| 58 | { |
| 59 | for (auto &handle : handles) |
| 60 | { |
| 61 | ARM_COMPUTE_ERROR_ON(handle.first == nullptr); |
| 62 | handle.first->set_region(nullptr); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | MappingType BlobMemoryPool::mapping_type() const |
| 67 | { |
no test coverage detected