(h blobcache.Handle)
| 86 | } |
| 87 | |
| 88 | func (hs *handleSystem) Inspect(h blobcache.Handle) (handle, bool) { |
| 89 | k := handleKey(h) |
| 90 | hs.mu.RLock() |
| 91 | defer hs.mu.RUnlock() |
| 92 | handle, exists := hs.handles[k] |
| 93 | return handle, exists |
| 94 | } |
| 95 | |
| 96 | func (hs *handleSystem) DropAllForOID(oid blobcache.OID) { |
| 97 | hs.mu.Lock() |
nothing calls this directly
no test coverage detected