Lines Matching refs:iptr
120 XF86ConfInactivePtr iptr; in xf86parseLayoutSection() local
122 iptr = calloc(1, sizeof(XF86ConfInactiveRec)); in xf86parseLayoutSection()
123 iptr->list.next = NULL; in xf86parseLayoutSection()
125 free(iptr); in xf86parseLayoutSection()
128 iptr->inactive_device_str = xf86_lex_val.str; in xf86parseLayoutSection()
130 xf86addListItem((glp) ptr->lay_inactive_lst, (glp) iptr); in xf86parseLayoutSection()
269 XF86ConfInputrefPtr iptr; in xf86parseLayoutSection() local
271 iptr = calloc(1, sizeof(XF86ConfInputrefRec)); in xf86parseLayoutSection()
272 iptr->list.next = NULL; in xf86parseLayoutSection()
273 iptr->iref_option_lst = NULL; in xf86parseLayoutSection()
275 free(iptr); in xf86parseLayoutSection()
278 iptr->iref_inputdev_str = xf86_lex_val.str; in xf86parseLayoutSection()
280 iptr->iref_option_lst = in xf86parseLayoutSection()
281 xf86addNewOption(iptr->iref_option_lst, xf86_lex_val.str, NULL); in xf86parseLayoutSection()
285 xf86addListItem((glp) ptr->lay_input_lst, (glp) iptr); in xf86parseLayoutSection()
316 XF86ConfInactivePtr iptr; in xf86printLayoutSection() local
365 for (iptr = ptr->lay_inactive_lst; iptr; iptr = iptr->list.next) in xf86printLayoutSection()
366 fprintf(cf, "\tInactive \"%s\"\n", iptr->inactive_device_str); in xf86printLayoutSection()
451 XF86ConfInputrefPtr iptr; in xf86layoutAddInputDevices() local
453 iptr = calloc(1, sizeof(XF86ConfInputrefRec)); in xf86layoutAddInputDevices()
454 iptr->iref_inputdev_str = input->inp_identifier; in xf86layoutAddInputDevices()
456 xf86addListItem((glp) layout->lay_input_lst, (glp) iptr); in xf86layoutAddInputDevices()
485 XF86ConfInactivePtr iptr; in xf86validateLayout() local
505 iptr = layout->lay_inactive_lst; in xf86validateLayout()
506 while (iptr) { in xf86validateLayout()
507 device = xf86findDevice(iptr->inactive_device_str, in xf86validateLayout()
511 iptr->inactive_device_str, in xf86validateLayout()
516 iptr->inactive_device = device; in xf86validateLayout()
517 iptr = iptr->list.next; in xf86validateLayout()