Lines Matching refs:ignore
64 #define S_NOIGNORE 8 /* don't do ignore processing */
613 register struct ignore *igp;
625 if ((igp = (struct ignore *)
626 calloc(1, sizeof (struct ignore))) == NULL) {
648 struct ignore *igp;
679 register struct ignore *ig1, *ig2;
726 register struct ignore *igp;
736 if ((igp = (struct ignore *)
737 calloc(1, sizeof (struct ignore))) == NULL) {
746 igp->i_link = ignore[h];
747 ignore[h] = igp;
759 struct ignore *igp;
764 for (igp = ignore[h]; igp != 0; igp = igp->i_link)
773 for (igp = ignore[h]; igp != 0; igp = igp->i_link)
792 * Remove a list of fields from the ignore list.
799 register struct ignore *ig1, *ig2;
803 ig1 = ignore[h];
811 ignore[h] = NULL;
820 for (ig1 = ignore[h]; ig1; ig2 = ig1, ig1 = ig1->i_link)
822 if (ig1 == ignore[h])
823 ignore[h] = ig1->i_link;