Lines Matching refs:table
147 hash_table_t *table,
159 hret = hash_values(table, &num_entries, &values);
198 static errno_t sdap_nested_group_hash_insert(hash_table_t *table,
208 DEBUG(SSSDBG_TRACE_ALL, "Inserting [%s] into hash table [%s]\n",
217 if (overwrite == false && hash_has_key(table, &key)) {
225 hret = hash_enter(table, &key, &value);
231 talloc_steal(table, key.str);
232 talloc_steal(table, value.ptr);
237 static errno_t sdap_nested_group_hash_entry(hash_table_t *table,
249 return sdap_nested_group_hash_insert(table, name, entry, false, table_name);
321 static errno_t sdap_nested_group_external_add(hash_table_t *table,
335 "Inserting external member [%s] into external members hash table\n",
338 hret = hash_lookup(table, &key, &value);
341 ext_mem = talloc_zero(table, struct sdap_external_missing_member);
353 ret = sdap_nested_group_hash_insert(table, ext_member, ext_mem,
599 * - is present in user or group hash table
607 * if dn is not in hash table or sysdb
831 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
838 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
846 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
891 /* insert initial group into hash table */
894 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to insert group into hash table "
965 DEBUG(SSSDBG_TRACE_FUNC, "%lu users found in the hash table\n",
974 DEBUG(SSSDBG_TRACE_FUNC, "%lu groups found in the hash table\n",
1519 /* save user in hash table */
1527 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to save user in hash table "
1562 /* save group in hash table */
1570 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to save group in hash table "
2397 /* save user in hash table */
2402 "Unable to save user in hash table "
2422 /* save group in hash table */
2429 "Unable to save group in hash table "