Searched refs:qelt (Results 1 - 17 of 17) sorted by relevance

/xsrc/external/mit/libFS/dist/src/
H A DFSNextEv.c61 _FSQEvent *qelt; local in function:FSNextEvent
65 qelt = svr->head;
66 *event = qelt->event;
68 if ((svr->head = qelt->next) == NULL)
70 qelt->next = _FSqfree;
71 _FSqfree = qelt;
H A DFSlibInt.c638 register _FSQEvent *qelt; local in function:_FSEnq
641 if ((qelt = _FSqfree) != NULL) {
643 _FSqfree = qelt->next;
644 } else if ((qelt = FSmalloc(sizeof(_FSQEvent))) == NULL) {
649 qelt->next = NULL;
651 if ((*svr->event_vec[event->type & 0177]) (svr, &qelt->event, event)) {
653 svr->tail->next = qelt;
655 svr->head = qelt;
657 svr->tail = qelt;
661 qelt
902 register _FSQEvent *qelt = _FSqfree; local in function:_FSFreeQ
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
H A DChkNotMaskEv.c72 register _XQEvent *prev, *qelt; local in function:XCheckNotMaskEvent
79 for (qelt = prev ? prev->next : dpy->head;
80 qelt;
81 prev = qelt, qelt = qelt->next) {
82 if (qelt->event.type >= LASTEvent
83 || !(_Xevent_to_mask[qelt->event.type] & mask)) {
84 *event = qelt->event;
85 _XDeq(dpy, prev, qelt);
[all...]
/xsrc/external/mit/libX11/dist/src/
H A DChkTypWEv.c44 register _XQEvent *prev, *qelt; local in function:XCheckTypedWindowEvent
55 for (qelt = prev ? prev->next : dpy->head;
56 qelt;
57 prev = qelt, qelt = qelt->next) {
58 if ((qelt->event.xany.window == w) &&
59 (qelt->event.type == type)) {
60 *event = qelt->event;
61 _XDeq(dpy, prev, qelt);
[all...]
H A DIfEvent.c48 register _XQEvent *qelt, *prev; local in function:XIfEvent
58 for (qelt = prev ? prev->next : dpy->head;
59 qelt;
60 prev = qelt, qelt = qelt->next) {
61 if(qelt->qserial_num > qe_serial
62 && (*predicate)(dpy, &qelt->event, arg)) {
63 *event = qelt->event;
64 _XDeq(dpy, prev, qelt);
[all...]
H A DChkTypEv.c43 register _XQEvent *prev, *qelt; local in function:XCheckTypedEvent
54 for (qelt = prev ? prev->next : dpy->head;
55 qelt;
56 prev = qelt, qelt = qelt->next) {
57 if (qelt->event.type == type) {
58 *event = qelt->event;
59 _XDeq(dpy, prev, qelt);
H A DPeekIfEv.c49 register _XQEvent *prev, *qelt; local in function:XPeekIfEvent
59 for (qelt = prev ? prev->next : dpy->head;
60 qelt;
61 prev = qelt, qelt = qelt->next) {
62 if(qelt->qserial_num > qe_serial
63 && (*predicate)(dpy, &qelt->event, arg)) {
65 *event = qelt->event;
H A DChkWinEv.c49 register _XQEvent *prev, *qelt; local in function:XCheckWindowEvent
60 for (qelt = prev ? prev->next : dpy->head;
61 qelt;
62 prev = qelt, qelt = qelt->next) {
63 if ((qelt->event.xany.window == w) &&
64 (qelt->event.type < GenericEvent) &&
65 (_Xevent_to_mask[qelt->event.type] & mask) &&
66 ((qelt
[all...]
H A DWinEvent.c52 register _XQEvent *prev, *qelt; local in function:XWindowEvent
62 for (qelt = prev ? prev->next : dpy->head;
63 qelt;
64 prev = qelt, qelt = qelt->next) {
65 if ((qelt->event.xany.window == w) &&
66 (qelt->event.type < GenericEvent) &&
67 (_Xevent_to_mask[qelt->event.type] & mask) &&
68 ((qelt
[all...]
H A DNextEvent.c42 register _XQEvent *qelt; local in function:XNextEvent
51 qelt = dpy->head;
52 *event = qelt->event;
53 _XDeq(dpy, NULL, qelt);
H A DChkMaskEv.c49 register _XQEvent *prev, *qelt; local in function:XCheckMaskEvent
60 for (qelt = prev ? prev->next : dpy->head;
61 qelt;
62 prev = qelt, qelt = qelt->next) {
63 if ((qelt->event.type < GenericEvent) &&
64 (_Xevent_to_mask[qelt->event.type] & mask) &&
65 ((qelt->event.type != MotionNotify) ||
67 (mask & AllButtons & qelt
[all...]
H A DMaskEvent.c49 register _XQEvent *prev, *qelt; local in function:XMaskEvent
59 for (qelt = prev ? prev->next : dpy->head;
60 qelt;
61 prev = qelt, qelt = qelt->next) {
62 if ((qelt->event.type < GenericEvent) &&
63 (_Xevent_to_mask[qelt->event.type] & mask) &&
64 ((qelt->event.type != MotionNotify) ||
66 (mask & AllButtons & qelt
[all...]
H A DChkIfEv.c48 register _XQEvent *prev, *qelt; local in function:XCheckIfEvent
59 for (qelt = prev ? prev->next : dpy->head;
60 qelt;
61 prev = qelt, qelt = qelt->next) {
62 if(qelt->qserial_num > qe_serial
63 && (*predicate)(dpy, &qelt->event, arg)) {
64 *event = qelt->event;
65 _XDeq(dpy, prev, qelt);
[all...]
H A DSync.c47 _XQEvent *qelt; local in function:XSync
49 for (qelt=dpy->head; qelt; qelt=qelt->next)
50 qelt->qserial_num = 0;
H A DPutBEvent.c40 register _XQEvent *qelt; local in function:_XPutBackEvent
64 qelt = dpy->qfree;
65 dpy->qfree = qelt->next;
66 qelt->qserial_num = dpy->next_event_serial_num++;
67 qelt->next = dpy->head;
68 qelt->event = store;
69 dpy->head = qelt;
71 dpy->tail = qelt;
H A DOpenDis.c589 _XQEvent *qelt = dpy->qfree; local in function:_XFreeDisplayStructure
590 while (qelt) {
591 if (_XIsEventCookie(dpy, &qelt->event))
592 _XStoreEventCookie(dpy, &qelt->event);
593 qelt = qelt->next;
680 register _XQEvent *qelt = dpy->qfree; local in function:_XFreeDisplayStructure
682 while (qelt) {
683 register _XQEvent *qnxt = qelt->next;
684 Xfree (qelt);
[all...]
H A DXlibInt.c733 register _XQEvent *qelt; local in function:_XEnq
736 if ((qelt = dpy->qfree)) {
738 dpy->qfree = qelt->next;
740 else if ((qelt = Xmalloc(sizeof(_XQEvent))) == NULL) {
746 qelt->next = NULL;
751 qelt->event.type = type;
756 * If the generic_event_vec is called, qelt->event is a event cookie
761 XGenericEventCookie *cookie = &qelt->event.xcookie;
765 qelt->qserial_num = dpy->next_event_serial_num++;
766 if (dpy->tail) dpy->tail->next = qelt;
788 _XDeq(register Display * dpy,register _XQEvent * prev,register _XQEvent * qelt) argument
[all...]

Completed in 16 milliseconds