Lines Matching full:ed
130 struct any_cursor_extra_data *ed; in any_start_seq_get() local
138 ed = (struct any_cursor_extra_data *)c->data; in any_start_seq_get()
139 for (ed->a = a; ed->a != NULL; ed->a = ed->a->next) { in any_start_seq_get()
140 ret = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor); in any_start_seq_get()
144 if (ed->a == NULL) { in any_start_seq_get()
160 struct any_cursor_extra_data *ed; in any_next_entry() local
162 ed = (struct any_cursor_extra_data *)cursor->data; in any_next_entry()
164 ret = krb5_kt_next_entry(context, ed->a->kt, entry, &ed->cursor); in any_next_entry()
170 ret2 = krb5_kt_end_seq_get (context, ed->a->kt, &ed->cursor); in any_next_entry()
173 while ((ed->a = ed->a->next) != NULL) { in any_next_entry()
174 ret2 = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor); in any_next_entry()
178 if (ed->a == NULL) { in any_next_entry()
191 struct any_cursor_extra_data *ed; in any_end_seq_get() local
193 ed = (struct any_cursor_extra_data *)cursor->data; in any_end_seq_get()
194 if (ed->a != NULL) in any_end_seq_get()
195 ret = krb5_kt_end_seq_get(context, ed->a->kt, &ed->cursor); in any_end_seq_get()
196 free (ed); in any_end_seq_get()