Home | History | Annotate | Download | only in misc

Lines Matching refs:insp

2005 		struct unixstat *u, **insp;
2033 insp = &list;
2034 while (*insp) {
2035 if (u->type < (*insp)->type ||
2036 (u->type == (*insp)->type &&
2037 u->ino < (*insp)->ino))
2039 insp = &(*insp)->next;
2041 u->next = *insp;
2042 *insp = u;