Lines Matching refs:sRegistry
37 static ProcessPipeIdRegistry sRegistry; variable
40 AutoLock lock(sRegistry.lock); in sIdExistsInRegistry()
41 auto it = sRegistry.ids.find(id); in sIdExistsInRegistry()
42 return it != sRegistry.ids.end(); in sIdExistsInRegistry()
99 AutoLock lock(sRegistry.lock); in GLProcessPipe()
100 sRegistry.ids.insert(m_uniqueId); in GLProcessPipe()
105 AutoLock lock(sRegistry.lock); in ~GLProcessPipe()
106 sRegistry.ids.erase(m_uniqueId); in ~GLProcessPipe()
172 AutoLock lock(sRegistry.lock); in forEachProcessPipeId()
173 for (auto id: sRegistry.ids) { in forEachProcessPipeId()
179 AutoLock lock(sRegistry.lock); in forEachProcessPipeIdRunAndErase()
180 auto it = sRegistry.ids.begin(); in forEachProcessPipeIdRunAndErase()
181 while (it != sRegistry.ids.end()) { in forEachProcessPipeIdRunAndErase()
183 it = sRegistry.ids.erase(it); in forEachProcessPipeIdRunAndErase()