Lines Matching defs:ScreenPriv
116 KdXVScreenPtr ScreenPriv;
137 ScreenPriv = malloc(sizeof(KdXVScreenRec));
138 dixSetPrivate(&pScreen->devPrivates, &KdXVScreenPrivateKey, ScreenPriv);
140 if (!ScreenPriv)
143 ScreenPriv->DestroyWindow = pScreen->DestroyWindow;
144 ScreenPriv->WindowExposures = pScreen->WindowExposures;
145 ScreenPriv->ClipNotify = pScreen->ClipNotify;
146 ScreenPriv->CloseScreen = pScreen->CloseScreen;
763 KdXVScreenPtr ScreenPriv = GET_KDXV_SCREEN(pScreen);
784 pScreen->DestroyWindow = ScreenPriv->DestroyWindow;
795 KdXVScreenPtr ScreenPriv = GET_KDXV_SCREEN(pScreen);
803 pScreen->WindowExposures = ScreenPriv->WindowExposures;
859 KdXVScreenPtr ScreenPriv = GET_KDXV_SCREEN(pScreen);
903 if (ScreenPriv->ClipNotify) {
904 pScreen->ClipNotify = ScreenPriv->ClipNotify;
916 KdXVScreenPtr ScreenPriv = GET_KDXV_SCREEN(pScreen);
920 if (!ScreenPriv)
923 pScreen->DestroyWindow = ScreenPriv->DestroyWindow;
924 pScreen->WindowExposures = ScreenPriv->WindowExposures;
925 pScreen->ClipNotify = ScreenPriv->ClipNotify;
926 pScreen->CloseScreen = ScreenPriv->CloseScreen;
935 free(ScreenPriv);