Lines Matching refs:cur
81 struct sidtab_node *cur;
87 cur = s->htable[hvalue];
88 while (cur != NULL && strcmp(cur->sid_s.ctx, ctx))
89 cur = cur->next;
91 if (cur == NULL) { /* need to make a new entry */
98 *sid = &cur->sid_s;
106 struct sidtab_node *cur;
111 cur = s->htable[i];
112 if (cur) {
115 while (cur) {
117 cur = cur->next;
134 struct sidtab_node *cur, *temp;
140 cur = s->htable[i];
141 while (cur != NULL) {
142 temp = cur;
143 cur = cur->next;