Home | History | Annotate | Download | only in xdgmime

Lines Matching refs:next

70   XdgMimeMagicMatch *next;
83 XdgMimeMagicMatchlet *next;
114 matchlet->next = NULL;
125 if (mime_magic_matchlet->next)
126 _xdg_mime_magic_matchlet_free (mime_magic_matchlet->next);
141 XdgMimeMagicMatch *ptr, *next;
146 next = ptr->next;
154 ptr = next;
379 /* Next two bytes determine how long the value is */
505 matchlet->next = match->matchlet;
571 if ((matchlet->next == NULL) ||
572 (matchlet->next->indent <= indent))
575 if (_xdg_mime_magic_matchlet_compare_level (matchlet->next,
584 matchlet = matchlet->next;
614 match->next = mime_magic->match_list;
620 while (list->next != NULL)
622 if (list->next->priority < match->priority)
624 match->next = list->next;
625 list->next = match;
628 list = list->next;
630 list->next = match;
631 match->next = NULL;
670 for (match = mime_magic->match_list; match; match = match->next)
710 for (match = mime_magic->match_list; match; match = match->next)
714 for (matchlet = match->matchlet; matchlet; matchlet = matchlet->next)
733 if ((matchlets == NULL) || (matchlets->next == NULL))
743 tmp = tmp->next;
744 matchlet->next = new_list;