Home | History | Annotate | Download | only in src

Lines Matching refs:cur

82 	struct sidtab_node *cur;
88 cur = s->htable[hvalue];
89 while (cur != NULL && strcmp(cur->sid_s.ctx, ctx))
90 cur = cur->next;
92 if (cur == NULL) { /* need to make a new entry */
99 *sid = &cur->sid_s;
107 struct sidtab_node *cur;
112 cur = h->htable[i];
113 if (cur) {
116 while (cur) {
118 cur = cur->next;
135 struct sidtab_node *cur, *temp;
141 cur = s->htable[i];
142 while (cur != NULL) {
143 temp = cur;
144 cur = cur->next;