Lines Matching refs:qe
206 static void CheckVirtualMotion( DeviceIntPtr pDev, QdEventPtr qe, WindowPtr pWin);
767 QdEventPtr qe,
774 if (qe)
776 ev = &qe->event->device_event;
786 pSprite->hot.pScreen = qe->pScreen;
862 if (qe && ev)
864 qe->pScreen = pSprite->hot.pScreen;
1093 QdEventPtr qe;
1153 qe = malloc(sizeof(QdEventRec) + eventlen);
1154 if (!qe)
1156 qe->next = (QdEventPtr)NULL;
1157 qe->device = device;
1158 qe->pScreen = pSprite->hotPhys.pScreen;
1159 qe->months = currentTime.months;
1160 qe->event = (InternalEvent *)(qe + 1);
1161 memcpy(qe->event, event, eventlen);
1164 *syncEvents.pendtail = qe;
1179 QdEventPtr *prev, qe;
1184 while ( (qe = *prev) )
1186 if (!qe->device->deviceGrab.sync.frozen)
1188 *prev = qe->next;
1189 pDev = qe->device;
1192 if (qe->event->any.type == ET_Motion)
1193 CheckVirtualMotion(pDev, qe, NullWindow);
1194 syncEvents.time.months = qe->months;
1195 syncEvents.time.milliseconds = qe->event->any.time;
1201 DeviceEvent *ev = &qe->event->device_event;
1222 (*qe->device->public.processInputProc)(qe->event, qe->device);
1223 free(qe);
1233 prev = &qe->next;