Home | History | Annotate | Download | only in libctf

Lines Matching defs:ctf_dynhash_next

419 ctf_dynhash_next (ctf_dynhash_t *h, ctf_next_t **it, void **key, void **value)
441 i->ctn_iter_fun = (void (*) (void)) ctf_dynhash_next;
445 if ((void (*) (void)) ctf_dynhash_next != i->ctn_iter_fun)
483 /* Remove the entry most recently returned by ctf_dynhash_next.
493 if ((void (*) (void)) ctf_dynhash_next != i->ctn_iter_fun)
516 See ctf_dynhash_next for notes on error returns, etc.
520 If SORT_FUN is null, thunks to ctf_dynhash_next. */
528 return ctf_dynhash_next (h, it, key, value);
553 while ((err = ctf_dynhash_next (h, &accum_i, &key, &value)) == 0)
741 Otherwise, just like ctf_dynhash_next. */