Lines Matching refs:handle
1106 struct provider_handle *handle;
1112 DEBUG(SSSDBG_TRACE_INTERNAL, "Creating a local provider handle\n");
1114 handle = talloc_zero(sctx, struct provider_handle);
1115 if (!handle) return ENOMEM;
1117 handle->name = "LOCAL";
1118 handle->fn = local_secret_req;
1120 lctx = talloc_zero(handle, struct local_context);
1165 handle->context = lctx;
1167 *out_handle = handle;
1168 DEBUG(SSSDBG_TRACE_INTERNAL, "Local provider handle created\n");