Searched refs:htable (Results 1 – 5 of 5) sorted by relevance
/security/selinux/ss/ |
D | hashtab.c | 38 h->htable = NULL; in hashtab_init() 41 h->htable = kcalloc(size, sizeof(*h->htable), GFP_KERNEL); in hashtab_init() 42 if (!h->htable) in hashtab_init() 72 cur = h->htable[i]; in hashtab_destroy() 78 h->htable[i] = NULL; in hashtab_destroy() 81 kfree(h->htable); in hashtab_destroy() 82 h->htable = NULL; in hashtab_destroy() 94 cur = h->htable[i]; in hashtab_map() 114 cur = h->htable[i]; in hashtab_stat() 143 new->htable = kcalloc(orig->size, sizeof(*new->htable), GFP_KERNEL); in hashtab_duplicate() [all …]
|
D | hashtab.h | 33 struct hashtab_node **htable; /* hash table */ member 74 cur = h->htable[hvalue]; in hashtab_insert() 86 return __hashtab_insert(h, prev ? &prev->next : &h->htable[hvalue], in hashtab_insert() 106 cur = h->htable[hvalue]; in hashtab_search()
|
D | avtab.c | 96 struct avtab_node **n = &h->htable[hvalue]; in avtab_insert_node() 117 for (prev = NULL, cur = h->htable[hvalue]; in avtab_insert() 162 for (prev = NULL, cur = h->htable[hvalue]; in avtab_insert_nonunique() 193 for (cur = h->htable[hvalue]; cur; in avtab_search() 229 for (cur = h->htable[hvalue]; cur; in avtab_search_node() 288 cur = h->htable[i]; in avtab_destroy() 298 kvfree(h->htable); in avtab_destroy() 299 h->htable = NULL; in avtab_destroy() 307 h->htable = NULL; in avtab_init() 318 h->htable = kvcalloc(nslot, sizeof(void *), GFP_KERNEL); in avtab_alloc_common() [all …]
|
D | avtab.h | 84 struct avtab_node **htable; member
|
/security/integrity/ima/ |
D | Kconfig | 317 bool "Disable htable to allow measurement of duplicate records" 320 This option disables htable to allow measurement of duplicate records.
|