OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mute_on
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chromeos/dbus/
cras_audio_client.h
27
// Called when audio output mute state changed to new state of |
mute_on
|.
28
virtual void OutputMuteChanged(bool
mute_on
);
30
// Called when audio input mute state changed to new state of |
mute_on
|.
31
virtual void InputMuteChanged(bool
mute_on
);
83
virtual void SetOutputUserMute(bool
mute_on
) = 0;
89
// Sets input mute state to |
mute_on
| value.
90
virtual void SetInputMute(bool
mute_on
) = 0;
cras_audio_client_stub_impl.h
29
virtual void SetOutputUserMute(bool
mute_on
) OVERRIDE;
31
virtual void SetInputMute(bool
mute_on
) OVERRIDE;
cras_audio_client_stub_impl.cc
89
void CrasAudioClientStubImpl::SetOutputUserMute(bool
mute_on
) {
90
volume_state_.output_user_mute =
mute_on
;
100
void CrasAudioClientStubImpl::SetInputMute(bool
mute_on
) {
101
volume_state_.input_mute =
mute_on
;
cras_audio_client.cc
79
virtual void SetOutputUserMute(bool
mute_on
) OVERRIDE {
83
writer.AppendBool(
mute_on
);
102
virtual void SetInputMute(bool
mute_on
) OVERRIDE {
106
writer.AppendBool(
mute_on
);
382
void CrasAudioClient::Observer::OutputMuteChanged(bool
mute_on
) {
385
void CrasAudioClient::Observer::InputMuteChanged(bool
mute_on
) {
/external/chromium_org/chromeos/audio/
audio_devices_pref_handler_stub.cc
42
bool
mute_on
) {
43
audio_device_mute_map_[device.id] =
mute_on
;
cras_audio_handler.h
144
virtual void SetOutputMute(bool
mute_on
);
147
virtual void SetInputMute(bool
mute_on
);
156
virtual void SetMuteForDevice(uint64 device_id, bool
mute_on
);
201
// Sets output mute state to |
mute_on
| internally, returns true if output mute
203
bool SetOutputMuteInternal(bool
mute_on
);
208
// Sets input mute state to |
mute_on
| internally, returns true if input mute
210
bool SetInputMuteInternal(bool
mute_on
);
audio_devices_pref_handler.h
36
virtual void SetMuteValue(const AudioDevice& device, bool
mute_on
) = 0;
audio_devices_pref_handler_stub.h
30
virtual void SetMuteValue(const AudioDevice& device, bool
mute_on
) OVERRIDE;
cras_audio_handler.cc
220
void CrasAudioHandler::SetOutputMute(bool
mute_on
) {
221
if (!SetOutputMuteInternal(
mute_on
))
238
void CrasAudioHandler::SetInputMute(bool
mute_on
) {
239
if (!SetInputMuteInternal(
mute_on
))
282
void CrasAudioHandler::SetMuteForDevice(uint64 device_id, bool
mute_on
) {
284
SetOutputMute(
mute_on
);
287
SetInputMute(
mute_on
);
293
audio_pref_handler_->SetMuteValue(*device,
mute_on
);
470
bool CrasAudioHandler::SetOutputMuteInternal(bool
mute_on
) {
474
output_mute_on_ =
mute_on
;
[
all
...]
/external/chromium_org/chrome/browser/chromeos/audio/
audio_devices_pref_handler_impl.h
31
virtual void SetMuteValue(const AudioDevice& device, bool
mute_on
) OVERRIDE;
/external/chromium_org/ash/system/chromeos/audio/
tray_audio.cc
366
bool
mute_on
= !IsAudioMuted();
variable
367
CrasAudioHandler::Get()->SetOutputMute(
mute_on
);
variable
368
if (!
mute_on
)
Completed in 81 milliseconds