Searched defs:handle (Results 1 - 13 of 13) sorted by relevance

/sssd/src/tests/cmocka/
H A Dcommon_mock_sdap.c61 struct sdap_handle *handle = talloc_zero(mem_ctx, struct sdap_handle); local
67 return handle;
/sssd/src/tests/
H A Ddlopen-tests.c132 void *handle; local
137 handle = dlopen(name[round], RTLD_GLOBAL|RTLD_NOW);
138 if (!handle) {
151 dlclose(handle);
/sssd/src/lib/cifs_idmap_sss/
H A Dcifs_idmap_sss.c58 int cifs_idmap_init_plugin(void **handle, const char **errmsg) argument
63 if (handle == NULL || errmsg == NULL)
81 *handle = ctx;
85 void cifs_idmap_exit_plugin(void *handle) argument
87 struct sssd_ctx *ctx = handle;
101 int cifs_idmap_sid_to_str(void *handle, const struct cifs_sid *csid, argument
104 struct sssd_ctx *ctx = handle;
160 int cifs_idmap_str_to_sid(void *handle, const char *name, argument
163 struct sssd_ctx *ctx = handle;
250 int cifs_idmap_sids_to_ids(void *handle, cons argument
290 cifs_idmap_ids_to_sids(void *handle, const struct cifs_uxid *cuxid, const size_t num, struct cifs_sid *csid) argument
[all...]
/sssd/src/util/
H A Dsss_semanage.c38 semanage_handle_t *handle,
44 switch (semanage_msg_get_level(handle)) {
64 static void sss_semanage_close(semanage_handle_t *handle) argument
66 if (handle == NULL) {
70 if (semanage_is_connected(handle)) {
71 semanage_disconnect(handle);
73 semanage_handle_destroy(handle);
79 semanage_handle_t *handle = NULL; local
81 handle = semanage_handle_create();
82 if (!handle) {
37 sss_semanage_error_callback(void *varg, semanage_handle_t *handle, const char *fmt, ...) argument
116 sss_semanage_user_add(semanage_handle_t *handle, semanage_seuser_key_t *key, const char *login_name, const char *seuser_name, const char *mls) argument
171 sss_semanage_user_mod(semanage_handle_t *handle, semanage_seuser_key_t *key, const char *login_name, const char *seuser_name, const char *mls) argument
221 semanage_handle_t *handle = NULL; local
293 semanage_handle_t *handle = NULL; local
[all...]
/sssd/src/p11_child/
H A Dp11_child_nss.c99 CERTCertDBHandle *handle; local
260 handle = CERT_GetDefaultCertDB();
261 if (handle == NULL) {
268 rv = CERT_EnableOCSPChecking(handle);
277 rv = CERT_SetOCSPDefaultResponder(handle,
287 rv = CERT_EnableOCSPDefaultResponder(handle);
308 rv = CERT_VerifyCertificateNow(handle, cert_list_node->cert,
337 rv = CERT_DisableOCSPDefaultResponder(handle);
/sssd/src/providers/proxy/
H A Dproxy.h103 void *handle; member in struct:proxy_id_ctx
H A Dproxy_init.c41 static void *proxy_dlsym(void *handle, argument
53 funcptr = dlsym(handle, funcname);
118 void *handle)
149 *symbols[i].dest = proxy_dlsym(handle, symbols[i].name, libname);
335 ctx->handle = dlopen(libpath, RTLD_NOW);
336 if (ctx->handle == NULL) {
343 ret = proxy_id_load_symbols(&ctx->ops, libname, ctx->handle);
116 proxy_id_load_symbols(struct proxy_nss_ops *ops, const char *libname, void *handle) argument
/sssd/src/responder/secrets/
H A Dproviders.c50 struct provider_handle **handle)
136 ret = sec_get_provider(sctx, provider, handle);
139 ret = local_secrets_provider_handle(sctx, handle);
141 ret = proxy_secrets_provider_handle(sctx, handle);
148 ret = sec_add_provider(sctx, *handle);
512 struct provider_handle *handle; local
515 handle = sctx->providers[i];
516 if (strcasecmp(handle->name, name) != 0) {
519 *out_handle = handle;
523 DEBUG(SSSDBG_MINOR_FAILURE, "No handle fo
49 sec_req_routing(TALLOC_CTX *mem_ctx, struct sec_req_ctx *secreq, struct provider_handle **handle) argument
527 sec_add_provider(struct sec_ctx *sctx, struct provider_handle *handle) argument
[all...]
H A Dlocal.c975 struct provider_handle *handle; local
981 DEBUG(SSSDBG_TRACE_INTERNAL, "Creating a local provider handle\n");
983 handle = talloc_zero(sctx, struct provider_handle);
984 if (!handle) return ENOMEM;
986 handle->name = "LOCAL";
987 handle->fn = local_secret_req;
989 lctx = talloc_zero(handle, struct local_context);
1035 handle->context = lctx;
1037 *out_handle = handle;
1038 DEBUG(SSSDBG_TRACE_INTERNAL, "Local provider handle create
[all...]
H A Dproxy.c1023 struct provider_handle *handle; local
1026 handle = talloc_zero(sctx, struct provider_handle);
1027 if (!handle) return ENOMEM;
1029 handle->name = "PROXY";
1030 handle->fn = proxy_secret_req;
1032 pctx = talloc(handle, struct proxy_context);
1038 handle->context = pctx;
1040 *out_handle = handle;
/sssd/src/util/cert/nss/
H A Dcert.c45 CERTCertDBHandle *handle; local
63 handle = CERT_GetDefaultCertDB();
68 cert = CERT_NewTempCertificate(handle, &der_item, NULL, PR_FALSE, PR_TRUE);
133 CERTCertDBHandle *handle; local
189 handle = CERT_GetDefaultCertDB();
194 cert = CERT_NewTempCertificate(handle, &der_item, NULL, PR_FALSE, PR_TRUE);
230 CERTCertDBHandle *handle; local
264 handle = CERT_GetDefaultCertDB();
267 rv = CERT_EnableOCSPChecking(handle);
276 rv = CERT_SetOCSPDefaultResponder(handle,
[all...]
/sssd/src/providers/ldap/
H A Dsdap_access.c818 struct sysdb_handle *handle; member in struct:sdap_access_filter_req_ctx
1315 struct sysdb_handle *handle; member in struct:sdap_access_ppolicy_req_ctx
H A Dsdap_async_initgroups.c2213 struct sysdb_handle *handle; member in struct:sdap_rfc2307bis_nested_ctx

Completed in 3112 milliseconds