Lines Matching refs:pxvs
252 XvScreenPtr pxvs; in XvScreenInit() local
274 pxvs = malloc(sizeof(XvScreenRec)); in XvScreenInit()
275 if (!pxvs) { in XvScreenInit()
280 dixSetPrivate(&pScreen->devPrivates, XvScreenKey, pxvs); in XvScreenInit()
282 pxvs->DestroyPixmap = pScreen->DestroyPixmap; in XvScreenInit()
283 pxvs->DestroyWindow = pScreen->DestroyWindow; in XvScreenInit()
284 pxvs->CloseScreen = pScreen->CloseScreen; in XvScreenInit()
297 XvScreenPtr pxvs; in XvCloseScreen() local
299 pxvs = (XvScreenPtr) dixLookupPrivate(&pScreen->devPrivates, XvScreenKey); in XvCloseScreen()
301 pScreen->DestroyPixmap = pxvs->DestroyPixmap; in XvCloseScreen()
302 pScreen->DestroyWindow = pxvs->DestroyWindow; in XvCloseScreen()
303 pScreen->CloseScreen = pxvs->CloseScreen; in XvCloseScreen()
305 free(pxvs); in XvCloseScreen()
334 XvScreenPtr pxvs = dixLookupPrivate(&pScreen->devPrivates, XvScreenKey); in XvStopAdaptors() local
335 XvAdaptorPtr pa = pxvs->pAdaptors; in XvStopAdaptors()
336 int na = pxvs->nAdaptors; in XvStopAdaptors()