HomeSort by relevance Sort by last modified time
    Searched refs:muted (Results 51 - 75 of 95) sorted by null

1 23 4

  /external/chromium_org/third_party/webrtc/modules/audio_processing/include/
audio_processing.h 230 // Set to true when the output of AudioProcessing will be muted or in some
234 virtual void set_output_will_be_muted(bool muted) = 0;
654 // to have been muted. The RMS of the frame will be interpreted as -127.
mock_audio_processing.h 206 void(bool muted));
  /frameworks/av/services/audioflinger/
Threads.h 521 void setMasterMute(bool muted);
524 void setStreamMute(audio_stream_type_t stream, bool muted);
674 // PlaybackThread needs to find out if master-muted, it checks it's local
677 void setMasterMute_l(bool muted) { mMasterMute = muted; }
    [all...]
AudioFlinger.h 135 virtual status_t setMasterMute(bool muted);
142 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
    [all...]
AudioFlinger.cpp 835 status_t AudioFlinger::setMasterMute(bool muted)
848 mMasterMute = muted;
857 dev->hwDevice()->set_master_mute(dev->hwDevice(), muted);
867 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
945 status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
964 mStreamTypes[stream].mute = muted;
966 mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 158 public void onMuted(boolean muted) {
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_device_pulse_linux.cc 604 bool muted(0);
605 if (_mixerManager.SpeakerMute(muted) == -1)
610 enabled = muted;
656 bool muted(0);
657 if (_mixerManager.MicrophoneMute(muted) == -1)
662 enabled = muted;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_device_mac.cc 769 bool muted(0);
771 if (_mixerManager.SpeakerMute(muted) == -1)
776 enabled = muted;
821 bool muted(0);
823 if (_mixerManager.MicrophoneMute(muted) == -1)
828 enabled = muted;
    [all...]
  /device/generic/goldfish/audio/
audio_hw.c 480 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
485 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElements.cpp 243 mediaElement().setMuted(!mediaElement().muted());
252 setDisplayType(mediaElement().muted() ? MediaUnMuteButton : MediaMuteButton);
MediaControls.cpp 347 if (mediaElement().muted())
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
audio_processing_impl.cc 336 void AudioProcessingImpl::set_output_will_be_muted(bool muted) {
337 output_will_be_muted_ = muted;
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
call.h 125 bool muted() const { return muted_; } function in class:cricket::Call
channelmanager.cc 833 VideoCapturer* video_capturer, bool muted) {
838 Bind(&VideoCapturer::MuteToBlackThenPause, video_capturer, muted));
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java 685 * Checks if the call is muted.
687 * @return true if the call is muted
807 * @param muted true if the call is muted, false otherwise
809 public void setMute(boolean muted) throws ImsException {
811 if (mMute != muted) {
812 mMute = muted;
815 mSession.setMute(muted);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 2371 bool HTMLMediaElement::muted() const function in class:blink::HTMLMediaElement
    [all...]
HTMLMediaElement.h 166 bool muted() const;
  /external/chromium_org/third_party/webrtc/modules/audio_device/win/
audio_device_wave_win.cc 898 bool muted(0);
900 if (_mixerManager.SpeakerMute(muted) == -1)
905 enabled = muted;
958 bool muted(0);
960 if (_mixerManager.MicrophoneMute(muted) == -1)
965 enabled = muted;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 257 if (mediaElement->muted())
  /external/chromium_org/ui/file_manager/video_player/js/cast/
cast_video_element.js 146 return this.castSession_.receiver.volume.muted ?
154 if (this.castSession_.receiver.volume.muted) {
  /frameworks/av/media/libmedia/
IAudioFlinger.cpp 306 virtual status_t setMasterMute(bool muted)
310 data.writeInt32(muted);
343 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted)
348 data.writeInt32(muted);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java     [all...]
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ActionBarController.java 445 && !mCurrentConversation.muted);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
OverridesUI.js 28 var emulatedSettingChangedMuted = { muted: false };
48 emulatedSettingChangedMuted.muted = true;
50 emulatedSettingChangedMuted.muted = false;
55 if (emulatedSettingChangedMuted.muted)

Completed in 790 milliseconds

1 23 4