(hFileName string, fileSize int64, fileSHA256 common.SHA256, nestedIncludes []string)
| 63 | } |
| 64 | |
| 65 | func (incCache *IncludesCache) AddHFileInfo(hFileName string, fileSize int64, fileSHA256 common.SHA256, nestedIncludes []string) { |
| 66 | incCache.mu.Lock() |
| 67 | incCache.hFilesInfo[hFileName] = &includeCachedHFile{fileSize, fileSHA256, nestedIncludes} |
| 68 | incCache.mu.Unlock() |
| 69 | } |
| 70 | |
| 71 | func (incCache *IncludesCache) Count() int { |
| 72 | incCache.mu.RLock() |
no outgoing calls
no test coverage detected