Lines Matching refs:ungot
93 struct ungot {
94 struct ungot *ug_next;
98 static struct ungot* ungot = NULL;
849 if (ungot != NULL && !ungot->ug_end_command)
984 if (ungot != NULL)
997 struct ungot *ug = ungot;
1001 ungot = ug->ug_next;
1011 while (ungot != NULL)
1026 if (ungot == NULL)
1100 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1103 ug->ug_next = ungot;
1104 ungot = ug;
1113 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1117 if (ungot == NULL)
1118 ungot = ug;
1121 struct ungot *pu;
1122 for (pu = ungot; pu->ug_next != NULL; pu = pu->ug_next)