Home
last modified time | relevance | path

Searched refs:pLockRefCount (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/dri/
H A Ddri.c532 pDRIPriv->pLockRefCount = &pDRIEntPriv->lockRefCount; in DRIScreenInit()
755 pDRIPriv->pLockRefCount = NULL; in DRICloseScreen()
2178 if (!pDRIPriv || !pDRIPriv->pLockRefCount) in DRILock()
2181 if (!*pDRIPriv->pLockRefCount) { in DRILock()
2193 (*pDRIPriv->pLockRefCount)++; in DRILock()
2201 if (!pDRIPriv || !pDRIPriv->pLockRefCount) in DRIUnlock()
2204 if (*pDRIPriv->pLockRefCount > 0) { in DRIUnlock()
2211 (*pDRIPriv->pLockRefCount)--; in DRIUnlock()
2218 if (!*pDRIPriv->pLockRefCount) in DRIUnlock()
H A Ddristruct.h105 int *pLockRefCount; member