Lines Matching defs:ctx

29 static sss_sifp_error sss_sifp_ifp_call(sss_sifp_ctx *ctx,
59 ret = sss_sifp_send_message(ctx, msg, _reply);
79 sss_sifp_send_message(sss_sifp_ctx *ctx,
83 return sss_sifp_send_message_ex(ctx, msg, 5000, _reply);
87 sss_sifp_send_message_ex(sss_sifp_ctx *ctx,
96 if (ctx == NULL || msg == NULL) {
102 reply = dbus_connection_send_with_reply_and_block(ctx->conn, msg,
105 sss_sifp_set_io_error(ctx, &dbus_error);
124 sss_sifp_invoke_list_va(sss_sifp_ctx *ctx,
136 if (ctx == NULL || method == NULL || _object_paths == NULL) {
140 dbus_method = sss_sifp_strcat(ctx, "List", method);
146 ret = sss_sifp_ifp_call(ctx, object_path, interface, dbus_method,
152 ret = sss_sifp_parse_object_path_list(ctx, reply, _object_paths);
155 sss_sifp_free_string(ctx, &dbus_method);
165 sss_sifp_invoke_list_ex(sss_sifp_ctx *ctx,
177 ret = sss_sifp_invoke_list_va(ctx, object_path, interface, method,
184 sss_sifp_invoke_list(sss_sifp_ctx *ctx,
194 ret = sss_sifp_invoke_list_ex(ctx, SSS_SIFP_PATH, SSS_SIFP_IFACE, method,
201 sss_sifp_invoke_find_va(sss_sifp_ctx *ctx,
213 if (ctx == NULL || method == NULL || _object_path == NULL) {
217 dbus_method = sss_sifp_strcat(ctx, "Find", method);
223 ret = sss_sifp_ifp_call(ctx, object_path, interface, dbus_method,
229 ret = sss_sifp_parse_object_path(ctx, reply, _object_path);
232 sss_sifp_free_string(ctx, &dbus_method);
242 sss_sifp_invoke_find_ex(sss_sifp_ctx *ctx,
254 ret = sss_sifp_invoke_find_va(ctx, object_path, interface, method,
261 sss_sifp_invoke_find(sss_sifp_ctx *ctx,
271 ret = sss_sifp_invoke_find_va(ctx, SSS_SIFP_PATH, SSS_SIFP_IFACE, method,