Lines Matching refs:reply
120 DBusMessage *reply = NULL;
155 if (!(reply = dbus_message_new_method_return(m)))
159 reply,
164 if (!dbus_connection_send(c, reply, NULL))
167 dbus_message_unref(reply);
190 if (!(reply = dbus_message_new_method_return(m)))
194 reply,
200 if (!(reply = dbus_message_new_method_return(m)))
204 reply,
210 if (!(reply = dbus_message_new_method_return(m)))
214 reply,
219 if (!(reply = dbus_message_new_error_printf(
227 if (!dbus_connection_send(c, reply, NULL))
230 dbus_message_unref(reply);
241 if (!(reply = dbus_message_new_method_return(m)))
245 reply,
251 if (!dbus_connection_send(c, reply, NULL))
254 dbus_message_unref(reply);
262 if (reply)
263 dbus_message_unref(reply);
265 if (!(reply = dbus_message_new_error(
271 if (!dbus_connection_send(c, reply, NULL))
274 dbus_message_unref(reply);
281 if (reply)
282 dbus_message_unref(reply);
368 DBusMessage *m = NULL, *reply = NULL;
459 if (!(reply = dbus_connection_send_with_reply_and_block(
481 reply,
489 dbus_message_unref(reply);
490 reply = NULL;
545 if (reply)
546 dbus_message_unref(reply);
639 DBusMessage *msg, *reply;
654 reply = dbus_connection_send_with_reply_and_block(connection, msg, DBUS_TIMEOUT_USE_DEFAULT, error);
658 if (reply) {
659 if (!dbus_message_get_args(reply, error, DBUS_TYPE_STRING, name_owner, DBUS_TYPE_INVALID)) {
660 dbus_message_unref(reply);
666 dbus_message_unref(reply);