Lines Matching refs:table
100 ipa_sudo_conv_store(hash_table_t *table,
108 if (table == NULL || key == NULL) {
116 if (value == NULL && hash_has_key(table, &hkey)) {
123 hret = hash_enter(table, &hkey, &hvalue);
129 talloc_steal(table, value);
136 ipa_sudo_conv_lookup(hash_table_t *table,
146 hret = hash_lookup(table, &hkey, &hvalue);
161 hash_table_t *table,
172 ret = ipa_sudo_conv_store(table, dn, NULL);
373 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
380 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
387 DEBUG(SSSDBG_CRIT_FAILURE, "Unable to create hash table [%d]: %s\n",
448 DEBUG(SSSDBG_OP_FAILURE, "Failed to store rule into table "
506 "table [%d]: %s\n", ret, sss_strerror(ret));
555 DEBUG(SSSDBG_OP_FAILURE, "Failed to store command into table "
656 hash_table_t *table,
676 hret = hash_keys(table, &count, &keys);
954 } table[] = {{SYSDB_NAME, SYSDB_SUDO_CACHE_AT_CN , NULL},
981 for (i = 0; table[i].ipa != NULL; i++) {
982 ret = sysdb_attrs_get_string_array(rule->attrs, table[i].ipa,
988 "%s [%d]: %s\n", table[i].ipa, ret, sss_strerror(ret));
993 if (table[i].conv_fn != NULL) {
994 value = table[i].conv_fn(tmp_ctx, conv, values[j], &skip_entry);
1007 ret = sysdb_attrs_add_string_safe(attrs, table[i].sudo, value);
1010 "%s [%d]: %s\n", table[i].sudo, ret, sss_strerror(ret));