Lines Matching refs:reply
334 * element. If the data is invalid, an error reply is sent and a negative
562 DBusMessage *reply = NULL;
576 pa_assert_se((reply = dbus_message_new_method_return(msg)));
578 dbus_message_iter_init_append(reply, &msg_iter);
586 pa_assert_se(dbus_connection_send(conn, reply, NULL));
588 dbus_message_unref(reply);
777 DBusMessage *reply;
787 pa_assert_se(reply = dbus_message_new_method_return(msg));
789 dbus_message_iter_init_append(reply, &msg_iter);
792 pa_assert_se(dbus_connection_send(conn, reply, NULL));
887 DBusMessage *reply = NULL;
903 pa_assert_se((reply = dbus_message_new_method_return(msg)));
905 dbus_message_iter_init_append(reply, &msg_iter);
923 pa_assert_se(dbus_connection_send(conn, reply, NULL));
925 dbus_message_unref(reply);
1956 pa_tagstruct *reply = NULL;
1968 reply = pa_tagstruct_new();
1969 pa_tagstruct_putu32(reply, PA_COMMAND_REPLY);
1970 pa_tagstruct_putu32(reply, tag);
1977 pa_tagstruct_putu32(reply, EXT_VERSION);
2004 pa_tagstruct_puts(reply, name);
2005 pa_tagstruct_put_channel_map(reply, e->volume_valid ? &e->channel_map : pa_channel_map_init(&cm));
2006 pa_tagstruct_put_cvolume(reply, e->volume_valid ? &e->volume : pa_cvolume_init(&r));
2007 pa_tagstruct_puts(reply, e->device_valid ? e->device : NULL);
2008 pa_tagstruct_put_boolean(reply, e->muted_valid ? e->muted : false);
2099 pa_pstream_send_tagstruct(pa_native_connection_get_pstream(c), reply);
2202 pa_pstream_send_tagstruct(pa_native_connection_get_pstream(c), reply);
2207 if (reply)
2208 pa_tagstruct_free(reply);