| 223 | |
| 224 | LibCacheEntry* entry() const { return entry_; } |
| 225 | void SetEntry(LibCacheEntry* entry) { |
| 226 | if (entry_ != nullptr) LibCache::instance()->DecrementUseCount(entry); |
| 227 | entry_ = entry; |
| 228 | } |
| 229 | |
| 230 | LibCacheEntry* entry_ = nullptr; |
| 231 |
no test coverage detected