Lines Matching refs:rll
311 struct root_listen_list *rll;
314 for (rll = root_listen_list; rll; rll = rll->next) {
315 if (XtDisplay(rll->widget) == event->xany.display) {
316 XtDispatchEventToWidget(rll->widget, event);
347 struct root_listen_list *rll = malloc (sizeof (struct root_listen_list));
349 if (!rll)
351 rll->widget = widget;
352 rll->next = root_listen_list;
355 root_listen_list = rll;
362 struct root_listen_list *rll, **prev;
364 for (prev = &root_listen_list; (rll = *prev) != NULL; prev = &rll->next) {
365 if (rll->widget == widget) {
366 *prev = rll->next;
367 free(rll);