Lines Matching refs:table
77 h->table = malloc(slots * sizeof(struct curl_llist *));
78 if(h->table) {
80 h->table[i] = Curl_llist_alloc((curl_llist_dtor) hash_element_dtor);
81 if(!h->table[i]) {
83 Curl_llist_destroy(h->table[i], NULL);
84 h->table[i] = NULL;
86 free(h->table);
87 h->table = NULL;
124 #define FETCH_LIST(x,y,z) x->table[x->hash_func(y, z, x->slots)]
223 for(le = (h->table[i])->head;
246 Curl_llist_destroy(h->table[i], (void *) h);
247 h->table[i] = NULL;
250 Curl_safefree(h->table);
279 list = h->table[i];
338 if(h->table[i]->head) {
339 iter->current_element = h->table[i]->head;