Lines Matching refs:mute
60 PA_MODULE_DESCRIPTION("Automatically restore the volume/mute/device state of streams");
224 { "mute", "b", "in" },
836 dbus_bool_t mute;
844 mute = e->muted_valid ? e->muted : FALSE;
846 pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_BOOLEAN, &mute);
853 dbus_bool_t mute;
862 dbus_message_iter_get_basic(iter, &mute);
866 updated = !e->muted_valid || e->muted != mute;
869 e->muted = mute;
892 dbus_bool_t mute;
901 mute = e->muted_valid ? e->muted : FALSE;
919 pa_dbus_append_basic_variant_dict_entry(&dict_iter, entry_property_handlers[ENTRY_PROPERTY_HANDLER_MUTE].property_name, DBUS_TYPE_BOOLEAN, &mute);
1409 pa_log_info("Storing volume/mute for stream %s.", name);
1414 pa_log_error("Could not store volume/mute for stream %s.", name);
1527 pa_log_info("Restoring mute state for sink input %s.", name);
1531 pa_log_debug("Not restoring mute state for sink input %s, because already set.", name);
1708 pa_log_info("Restoring mute state for source output %s.", name);
1712 pa_log_debug("Not restoring mute state for source output %s, because already set.", name);
1851 pa_log_info("Restoring mute state for sink input %s.", name);
1894 pa_log_info("Restoring mute state for source output %s.", name);
1940 pa_log("mute=%s %s", pa_yes_no(e->muted), pa_yes_no(e->volume_valid));