Lines Matching refs:mContexts
717 auto it = mContexts.find(asCtxId); in resetPipe()
718 if (it == mContexts.end()) { in resetPipe()
778 mContexts[ctx_id] = res; in createContext()
786 auto it = mContexts.find(handle); in destroyContext()
787 if (it == mContexts.end()) { in destroyContext()
810 mContexts.erase(it); in destroyContext()
816 auto ctxIt = mContexts.find(ctxId); in setContextAddressSpaceHandleLocked()
817 if (ctxIt == mContexts.end()) { in setContextAddressSpaceHandleLocked()
830 auto ctxIt = mContexts.find(ctxId); in getAddressSpaceHandleLocked()
831 if (ctxIt == mContexts.end()) { in getAddressSpaceHandleLocked()
864 auto ctxIt = mContexts.find(ctxId); in addressSpaceProcessCmd()
865 if (ctxIt == mContexts.end()) { in addressSpaceProcessCmd()
1581 auto ctxEntryIt = mContexts.find(ctxId); in attachResource()
1584 if (ctxEntryIt == mContexts.end() || resEntryIt == mResources.end()) return; in attachResource()
1927 auto ctxIt = mContexts.find(ctxId); in detachResourceLocked()
1928 if (ctxIt != mContexts.end()) { in detachResourceLocked()
1957 std::unordered_map<VirtioGpuCtxId, PipeCtxEntry> mContexts; member in PipeVirglRenderer