Lines Matching refs:iptr
121 XF86ConfInactivePtr iptr;
123 iptr = calloc (1, sizeof (XF86ConfInactiveRec));
124 iptr->list.next = NULL;
126 free (iptr);
129 iptr->inactive_device_str = val.str;
131 xf86addListItem ((glp) ptr->lay_inactive_lst, (glp) iptr);
272 XF86ConfInputrefPtr iptr;
274 iptr = calloc (1, sizeof (XF86ConfInputrefRec));
275 iptr->list.next = NULL;
276 iptr->iref_option_lst = NULL;
278 free(iptr);
281 iptr->iref_inputdev_str = val.str;
284 iptr->iref_option_lst =
285 xf86addNewOption (iptr->iref_option_lst, val.str, NULL);
289 xf86addListItem ((glp) ptr->lay_input_lst, (glp) iptr);
320 XF86ConfInactivePtr iptr;
372 for (iptr = ptr->lay_inactive_lst; iptr; iptr = iptr->list.next)
373 fprintf (cf, "\tInactive \"%s\"\n", iptr->inactive_device_str);
466 XF86ConfInputrefPtr iptr;
467 iptr = calloc(1, sizeof(XF86ConfInputrefRec));
468 iptr->iref_inputdev_str = input->inp_identifier;
470 xf86addListItem((glp)layout->lay_input_lst, (glp)iptr);
501 XF86ConfInactivePtr iptr;
523 iptr = layout->lay_inactive_lst;
524 while (iptr)
526 device = xf86findDevice (iptr->inactive_device_str,
531 iptr->inactive_device_str, layout->lay_identifier);
535 iptr->inactive_device = device;
536 iptr = iptr->list.next;