Lines Matching refs:table
197 hash_table_t *table;
237 error = hash_create(10, &table, NULL, NULL);
246 /* Add all entries from list 1 into a hash table */
250 error = hash_enter(table, &key, &value);
262 error = hash_delete(table, &key);
308 /* Get the leftover entries in the hash table */
310 error = hash_keys(table, &count, &keys);
367 hash_destroy(table);
393 hash_table_t *table;
402 hret = hash_create_ex(count, &table, directory_bits, segment_bits,
408 /* Steal the table pointer onto the mem_ctx,
410 * table.
413 * we talloc_free() the table
415 *tbl = talloc_steal(mem_ctx, table);
416 talloc_steal(table, internal_ctx);
426 DEBUG(SSSDBG_FATAL_FAILURE, "Could not create hash table: [%d][%s]\n",