Searched defs:mute (Results 1 - 9 of 9) sorted by relevance

/external/qemu/audio/
H A Dmixeng.h29 struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; member in struct:mixeng_volume
32 struct mixeng_volume { int mute; int64_t r; int64_t l; }; member in struct:mixeng_volume
H A Daudio.c198 .mute = 0,
2197 void AUD_set_volume_out (SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol) argument
2200 sw->vol.mute = mute;
2206 void AUD_set_volume_in (SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol) argument
2209 sw->vol.mute = mute;
/external/webkit/Source/WebCore/inspector/
H A DInspectorState.cpp55 void InspectorState::mute() function in class:WebCore::InspectorState
/external/chromium/chrome/browser/chromeos/
H A Daudio_mixer_alsa.cc163 void AudioMixerAlsa::SetMute(bool mute) { argument
168 // Set volume to minimum on mute, since switching the element off does not
169 // always mute as it should.
172 // switching the element off can be guaranteed to mute it. Currently mute
177 if (old_value != mute) {
178 if (mute) {
186 SetElementMuted_Locked(elem_master_, mute);
187 prefs_->SetInteger(prefs::kAudioMute, mute ? kPrefMuteOn : kPrefMuteOff);
369 // If volume or mute ar
372 bool mute = false; local
378 VLOG(1) << "Setting volume to " << pref_volume << " and mute to " << mute; local
393 int mute = prefs_->GetInteger(prefs::kAudioMute); local
545 SetElementMuted_Locked(snd_mixer_elem_t* elem, bool mute) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcall.cc319 void Call::Mute(bool mute) { argument
320 muted_ = mute;
325 voice_channel->Mute(mute);
H A Dchannel.cc140 bool BaseChannel::Mute(bool mute) { argument
142 Send(mute ? MSG_MUTE : MSG_UNMUTE);
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_context_menu.cc1266 bool mute = !(params_.media_flags & WebContextMenuData::MediaMuted); local
1267 if (mute) {
1276 WebMediaPlayerAction::Mute, mute));
/external/kernel-headers/original/linux/
H A Dmsm_audio.h204 uint32_t mute; member in struct:msm_mute_info
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp109 // This is called when playbin receives the notify::mute signal.
625 bool mute = false; local
631 mute = (bool) (rate < 0.8 || rate > 2);
636 mute = true;
646 LOG_VERBOSE(Media, "Need to mute audio: %d", (int) mute);
653 g_object_set(m_playBin, "mute", mute, NULL);
1375 g_object_set(m_playBin, "mute", muted, NULL);
1386 g_object_get(m_playBin, "mute",
[all...]

Completed in 444 milliseconds