Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:it

64 				   struct ext2fs_hashmap_entry **it)
66 *it = *it ? (*it)->list_next : h->first;
67 return *it ? (*it)->data : NULL;
73 struct ext2fs_hashmap_entry *it = h->entries[i];
74 while (it) {
75 struct ext2fs_hashmap_entry *tmp = it->next;
77 h->free(it->data);
78 free(it);
79 it = tmp;