Searched refs:htable (Results 1 – 5 of 5) sorted by relevance
| /security/selinux/ss/ |
| A D | hashtab.c | 40 h->htable = NULL; in hashtab_init() 43 h->htable = kcalloc(size, sizeof(*h->htable), in hashtab_init() 45 if (!h->htable) in hashtab_init() 75 cur = h->htable[i]; in hashtab_destroy() 84 kfree(h->htable); in hashtab_destroy() 85 h->htable = NULL; in hashtab_destroy() 96 cur = h->htable[i]; in hashtab_map() 118 cur = h->htable[i]; in hashtab_stat() 152 new->htable = kcalloc(orig->size, sizeof(*new->htable), GFP_KERNEL); in hashtab_duplicate() 153 if (!new->htable) in hashtab_duplicate() [all …]
|
| A D | hashtab.h | 33 struct hashtab_node **htable; /* hash table */ member 75 cur = h->htable[hvalue]; in hashtab_insert() 87 return __hashtab_insert(h, prev ? &prev->next : &h->htable[hvalue], key, in hashtab_insert() 107 cur = h->htable[hvalue]; in hashtab_search()
|
| A D | avtab.c | 131 for (prev = NULL, cur = h->htable[hvalue]; cur; in avtab_insert() 164 for (prev = NULL, cur = h->htable[hvalue]; cur; in avtab_insert_nonunique() 188 for (cur = h->htable[hvalue]; cur; cur = cur->next) { in avtab_search_node() 228 cur = h->htable[i]; in avtab_destroy() 238 kvfree(h->htable); in avtab_destroy() 239 h->htable = NULL; in avtab_destroy() 247 h->htable = NULL; in avtab_init() 258 h->htable = kvcalloc(nslot, sizeof(void *), GFP_KERNEL); in avtab_alloc_common() 259 if (!h->htable) in avtab_alloc_common() 302 cur = h->htable[i]; in avtab_hash_eval() [all …]
|
| A D | avtab.h | 85 struct avtab_node **htable; member
|
| /security/integrity/ima/ |
| A D | Kconfig | 319 bool "Disable htable to allow measurement of duplicate records" 322 This option disables htable to allow measurement of duplicate records.
|
Completed in 8 milliseconds