Home | History | Annotate | Download | only in cso_cache

Lines Matching defs:cso_hash_iter

58 struct cso_hash_iter {
77 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash, unsigned key,
86 struct cso_hash_iter cso_hash_erase(struct cso_hash *hash, struct cso_hash_iter iter);
92 struct cso_hash_iter cso_hash_first_node(struct cso_hash *hash);
97 struct cso_hash_iter cso_hash_find(struct cso_hash *hash, unsigned key);
105 int cso_hash_iter_is_null(struct cso_hash_iter iter);
106 unsigned cso_hash_iter_key(struct cso_hash_iter iter);
107 void *cso_hash_iter_data(struct cso_hash_iter iter);
110 struct cso_hash_iter cso_hash_iter_next(struct cso_hash_iter iter);
111 struct cso_hash_iter cso_hash_iter_prev(struct cso_hash_iter iter);