Cross Reference: /sssd-io/src/responder/common/responder_get_domains.c

Lines Matching refs:dom

30     struct sss_domain_info *dom;
36 struct sss_domain_info *dom,
56 info->dom = dom;
58 key = talloc_asprintf(state, "domains@%s", dom->name);
64 ret = sss_dp_issue_request(state, rctx, key, dom,
100 info->dom->name, info->hint);
129 static errno_t process_subdomains(struct sss_domain_info *dom,
136 struct sss_domain_info *dom;
188 state->dom = rctx->domains;
189 while(state->dom != NULL && !NEED_CHECK_PROVIDER(state->dom->provider)) {
190 state->dom = get_next_domain(state->dom, 0);
193 if (state->dom == NULL) {
206 subreq = get_subdomains_send(req, rctx, state->dom, state->hint);
232 struct sss_domain_info *dom;
234 for (dom = rctx->domains; dom != NULL; dom = dom->next) {
235 ret = sysdb_get_certmap(dom, dom->sysdb, &certmaps, &user_name_hint);
237 dom->user_name_hint = user_name_hint;
238 talloc_free(dom->certmaps);
239 dom->certmaps = certmaps;
242 "sysdb_get_certmap failed for domain [%s].\n", dom->name);
265 ret = process_subdomains(state->dom, state->rctx->cdb);
273 state->dom = get_next_domain(state->dom, 0);
276 while(state->dom != NULL && !NEED_CHECK_PROVIDER(state->dom->provider)) {
277 state->dom = get_next_domain(state->dom, 0);
280 if (state->dom == NULL) {
297 subreq = get_subdomains_send(req, state->rctx, state->dom, state->hint);
375 struct sss_domain_info *dom;
386 for (dom = rctx->domains; dom;
387 dom = get_next_domain(dom, SSS_GND_DESCEND)) {
388 if (!IS_SUBDOMAIN(dom)) {
389 diff = now - dom->subdomains_last_checked.tv_sec;
393 if (strcasecmp(dom->name, hint) == 0) {
648 struct sss_domain_info *dom;
657 struct sss_domain_info *dom,
679 info->dom = dom;
681 key = talloc_asprintf(state, "%d: %"SPRIuid"@%s", type, opt_id, dom->name);
687 ret = sss_dp_issue_request(state, rctx, key, dom,
756 info->dom->name, entry_type, be_req2str(entry_type), filter);