Lines Matching defs:rec
71 XIntrCallbackPtr rec;
74 if (!(rec = Xmalloc(sizeof(XIntrCallbackRec))))
77 rec->func = callback;
78 rec->call_data = call_data;
79 rec->next = spec->intr_cb;
80 spec->intr_cb = rec;
89 register XIntrCallbackPtr rec, next;
91 for (rec = spec->intr_cb; rec;) {
92 next = rec->next;
93 Xfree(rec);
94 rec = next;
103 register XIntrCallbackRec *rec;
106 for (rec = spec->intr_cb; rec; rec = rec->next) {
107 if ((*rec->func)(im, len, data, rec->call_data))