Lines Matching refs:Entry
70 auto &Entry = Entries.Map[Filename]; in getLock() local
71 if (!Entry) in getLock()
72 Entry = std::make_unique<ModuleCacheEntry>(); in getLock()
73 return Entry->CompilationMutex; in getLock()
81 auto &Entry = Entries.Map[Filename]; in getModuleTimestamp() local
82 if (!Entry) in getModuleTimestamp()
83 Entry = std::make_unique<ModuleCacheEntry>(); in getModuleTimestamp()
84 return Entry->Timestamp; in getModuleTimestamp()
94 auto &Entry = Entries.Map[Filename]; in updateModuleTimestamp() local
95 if (!Entry) in updateModuleTimestamp()
96 Entry = std::make_unique<ModuleCacheEntry>(); in updateModuleTimestamp()
97 return Entry->Timestamp; in updateModuleTimestamp()