Searched defs:diff (Results 1 - 4 of 4) sorted by relevance

/sssd-io/src/sss_client/idmap/
H A Dcommon_ex.c67 struct timespec diff; local
93 TIMESPECSUB(&endtime, &starttime, &diff);
94 left = timeout_ms - TIMESPEC_TO_MS(&diff);
/sssd-io/src/responder/common/
H A Dresponder_get_domains.c377 time_t diff; local
379 diff = now - rctx->get_domains_last_call.tv_sec;
380 if (diff >= rctx->domains_timeout) {
389 diff = now - dom->subdomains_last_checked.tv_sec;
394 if (diff >= rctx->domains_timeout) {
/sssd-io/src/util/
H A Dutil.c667 int diff = strlen(host) - strlen(domain); local
669 if (diff == 0 && strcmp(host, domain) == 0) {
673 if (diff > 0 && strcmp(host + diff, domain) == 0 && host[diff - 1] == '.') {
/sssd-io/src/ldb_modules/
H A Dmemberof.c2109 struct ldb_dn **diff = NULL; local
2147 diff = talloc_array(del_ctx, struct ldb_dn *,
2149 if (!diff) {
2153 diff[j] = ldb_dn_from_ldb_val(diff, ldb, &el->values[i]);
2154 if (!diff[j]) {
2159 if (ldb_dn_compare(del_ctx->first->entry_dn, diff[j]) == 0) {
2166 diff[j] = NULL;
2203 for (k = 0; diff[k]; k++) {
2204 if (ldb_dn_compare(new_list->dns[i], diff[
[all...]

Completed in 21 milliseconds