Searched refs:hashtable (Results 1 – 9 of 9) sorted by relevance
| /tools/xenstored/ |
| A D | hashtable.h | 6 struct hashtable; 25 struct hashtable * 46 hashtable_add(struct hashtable *h, const void *k, void *v); 62 hashtable_replace(struct hashtable *h, const void *k, void *v); 74 hashtable_search(const struct hashtable *h, const void *k); 85 hashtable_remove(struct hashtable *h, const void *k); 106 hashtable_iterate(struct hashtable *h, 117 hashtable_destroy(struct hashtable *h);
|
| A D | hashtable.c | 20 struct hashtable { struct 59 struct hashtable *create_hashtable(const void *ctx, const char *name, in create_hashtable() 64 struct hashtable *h; in create_hashtable() 66 h = talloc_zero(ctx, struct hashtable); in create_hashtable() 89 static unsigned int hash(const struct hashtable *h, const void *k) in hash() 101 static int hashtable_expand(struct hashtable *h) in hashtable_expand() 164 int hashtable_add(struct hashtable *h, const void *k, void *v) in hashtable_add() 199 void *hashtable_search(const struct hashtable *h, const void *k) in hashtable_search() 228 hashtable_remove(struct hashtable *h, const void *k) in hashtable_remove() 256 int hashtable_iterate(struct hashtable *h, in hashtable_iterate() [all …]
|
| A D | domain.h | 179 struct hashtable *domain_check_acc_init(void); 180 void domain_check_acc_add(const struct node *node, struct hashtable *domains); 181 void domain_check_acc(struct hashtable *domains);
|
| A D | transaction.h | 59 int check_transactions(struct hashtable *hash);
|
| A D | Makefile.common | 5 XENSTORED_OBJS-y += talloc.o utils.o hashtable.o
|
| A D | domain.c | 172 static struct hashtable *domhash; 2046 struct hashtable *domains = arg; in domain_check_acc_init_sub() 2070 struct hashtable *domain_check_acc_init(void) in domain_check_acc_init() 2072 struct hashtable *domains; in domain_check_acc_init() 2087 void domain_check_acc_add(const struct node *node, struct hashtable *domains) in domain_check_acc_add() 2120 void domain_check_acc(struct hashtable *domains) in domain_check_acc()
|
| A D | core.h | 424 int remember_string(struct hashtable *hash, const char *str);
|
| A D | transaction.c | 585 int check_transactions(struct hashtable *hash) in check_transactions()
|
| A D | core.c | 65 static struct hashtable *nodes; 2327 int remember_string(struct hashtable *hash, const char *str) in remember_string() 2348 struct hashtable *reachable; 2349 struct hashtable *domains; 2384 struct hashtable *reachable = private; in clean_store_()
|
Completed in 19 milliseconds