HomeSort by relevance Sort by last modified time
    Searched refs:dict_each (Results 1 - 2 of 2) sorted by null

  /external/ltrace/
dict.h 210 void *dict_each(struct dict *dict, void *start_after,
213 #define DICT_EACH(DICTP, KEY_TYPE, VALUE_TYPE, START_AFTER, CB, DATA) \
222 (KEY_TYPE *)dict_each((DICTP), _start_after, \
dict.c 113 if (dict_each((struct dict *)source, NULL,
163 dict_each(dict, NULL, destroy_cb, &destroy_data);
300 if (dict_each(dict, NULL, rehash_move, &tmp) != NULL)
445 dict_each(struct dict *dict, void *start_after, function
527 for (it = NULL; (it = DICT_EACH(di, int, int, it, dump, seen)) != NULL;)
567 * inside a DICT_EACH call, so copy first keys to a separate
572 DICT_EACH(&d2, int, int, NULL, fill_keys, keys);

Completed in 33 milliseconds