Lines Matching refs:table
286 hash_table_t *table;
326 error = hash_create(10, &table, NULL, NULL);
335 /* Add all entries from list 1 into a hash table */
339 error = hash_enter(table, &key, &value);
351 error = hash_delete(table, &key);
397 /* Get the leftover entries in the hash table */
399 error = hash_keys(table, &count, &keys);
456 hash_destroy(table);
482 hash_table_t *table;
491 hret = hash_create_ex(count, &table, directory_bits, segment_bits,
497 /* Steal the table pointer onto the mem_ctx,
499 * table.
502 * we talloc_free() the table
504 *tbl = talloc_steal(mem_ctx, table);
505 talloc_steal(table, internal_ctx);
515 DEBUG(SSSDBG_FATAL_FAILURE, "Could not create hash table: [%d][%s]\n",