| 1619 | } |
| 1620 | |
| 1621 | void BlockCache::addHole(uint32_t size) const { |
| 1622 | holeCount_.inc(); |
| 1623 | holeSizeTotal_.add(size); |
| 1624 | } |
| 1625 | void BlockCache::removeHole(uint32_t size) const { |
| 1626 | holeCount_.sub(1); |
| 1627 | holeSizeTotal_.sub(size); |
no test coverage detected