Searched refs:htable (Results 1 – 2 of 2) sorted by relevance
95 if (htab->htable != NULL) { in hcreate_r()117 htab->htable = malloc(htab->htablesize * sizeof htab->htable[0]); in hcreate_r()118 if (htab->htable == NULL) { in hcreate_r()125 SLIST_INIT(&(htab->htable[idx])); in hcreate_r()137 if (htab->htable == NULL) in hdestroy_r()142 while (!SLIST_EMPTY(&(htab->htable[idx]))) { in hdestroy_r()143 ie = SLIST_FIRST(&(htab->htable[idx])); in hdestroy_r()144 SLIST_REMOVE_HEAD(&(htab->htable[idx]), link); in hdestroy_r()150 free(htab->htable); in hdestroy_r()151 htab->htable = NULL; in hdestroy_r()[all …]
69 struct internal_head *htable; member