HomeSort by relevance Sort by last modified time
    Searched refs:muted (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/autotest/client/site_tests/platform_InputVolume/
platform_InputVolume.py 22 MUTE_STATUS = 'Muted'
39 @raises: error.TestFail if system volume did not decrease or is muted.
44 # If expected volume is 0, we should be muted.
46 raise error.TestFail("Volume should be muted.")
57 @raises: error.TestFail if system volume muted or did not increase.
63 raise error.TestFail("Volume is muted when it shouldn't be.")
73 @raises: error.TestFail if system volume not muted.
80 raise error.TestFail("Volume not muted.")
96 @returns: True if system muted, False if not
99 output = utils.system_output(self.CTC_GREP_FOR + 'muted')
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
AudioState.java 60 public AudioState(boolean muted, int route, int supportedRouteMask) {
61 this.isMuted = muted;
168 * @return {@code true} if the call is muted, false otherwise.
CallAudioState.java 62 * @param muted {@code true} if the call is muted, {@code false} otherwise.
76 public CallAudioState(boolean muted, int route, int supportedRouteMask) {
77 this.isMuted = muted;
120 * @return {@code true} if the call is muted, {@code false} otherwise.
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 111 * @see UIProvider.ConversationColumns#MUTED
113 public final boolean muted; field in class:Conversation
194 dest.writeInt(muted ? 1 : 0);
220 muted = in.readInt() != 0;
296 muted = cursor.getInt(UIProvider.CONVERSATION_MUTED_COLUMN) != 0;
335 muted = other.muted;
352 boolean spam, boolean phishing, boolean muted, Uri accountUri,
374 this.muted = muted;
    [all...]
  /external/webrtc/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.cc 521 UInt32 muted = 0; local
530 size = sizeof(muted);
532 _outputDeviceID, &propertyAddress, 0, NULL, &size, &muted));
534 // 1 means muted
535 enabled = static_cast<bool>(muted);
537 // Otherwise check if all channels are muted.
539 muted = 0;
547 muted = (muted && channelMuted);
559 // 1 means muted
697 UInt32 muted = 0; local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc_manager_direct.cc 311 void AgcManagerDirect::SetCaptureMuted(bool muted) {
312 if (capture_muted_ == muted) {
315 capture_muted_ = muted;
317 if (!muted) {
agc_manager_direct.h 62 // Call when the capture stream has been muted/unmuted. This causes the
65 void SetCaptureMuted(bool muted);
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
VolumeDialogController.java 67 public boolean muted; field in class:VolumeDialogController.StreamState
79 rt.muted = muted;
136 if (ss.muted) sb.append(" [MUTED]");
  /external/webrtc/webrtc/tools/rtcbot/bot/browser/
bot.js 95 function showStream(streamId, autoplay, muted) {
99 video.muted = muted;
  /frameworks/base/core/java/android/preference/
SeekBarVolumizer.java 53 void onMuted(boolean muted, boolean zenMuted);
351 final boolean muted = ((Boolean)msg.obj).booleanValue();
352 if (muted != mMuted) {
353 mMuted = muted;
434 final boolean muted = mAudioManager.isStreamMute(mStreamType)
436 mUiHandler.postUpdateSlider(streamValue, mLastAudibleStreamVolume, muted);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl 98 * @param muted true if the call is muted, false otherwise
100 void setMute(boolean muted);
  /packages/apps/Car/Radio/src/com/android/car/radio/
RadioDisplayController.java 187 * button should toggle the radio from muted to un-muted.
253 * Sets the current state of the play button. If the given {@code muted} value is {@code true},
257 public void setPlayPauseButtonState(boolean muted) {
259 mPlayButton.setPlayState(muted
265 mPresetPlayButton.setPlayState(muted
  /packages/apps/Settings/src/com/android/settings/notification/
VolumeSeekBarPreference.java 136 public void onMuted(boolean muted, boolean zenMuted) {
137 if (mMuted == muted && mZenMuted == zenMuted) return;
138 mMuted = muted;
  /device/asus/fugu/libaudio/
AudioHardwareOutput.cpp 194 status_t AudioHardwareOutput::setMasterMute(bool muted)
199 mSettings.masterMute = muted;
208 status_t AudioHardwareOutput::getMasterMute(bool* muted) {
209 if (NULL == muted)
215 *muted = mSettings.masterMute;
  /external/webrtc/webrtc/libjingle/xmpp/
hangoutpubsubclient.cc 205 bool muted, std::string* task_id_out) {
206 audio_mute_state_client_->Publish(nick_, muted, task_id_out);
210 bool muted, std::string* task_id_out) {
211 video_mute_state_client_->Publish(nick_, muted, task_id_out);
255 // mute state, if our state changes to muted, we should mute ourselves.
hangoutpubsubclient.h 74 bool muted, std::string* task_id_out = NULL);
76 bool muted, std::string* task_id_out = NULL);
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsCallSessionImplBase.java 134 * @param muted true if the call is muted, false otherwise
137 public void setMute(boolean muted) throws RemoteException {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 358 public void setMute(boolean muted) {
360 mForegroundCall.setMute(muted);
614 void setMute(boolean muted) {
615 if (SC_DBG) log("setMute: muted=" + muted);
617 ((SipConnection) c).setMute(muted);
    [all...]
  /hardware/libhardware/modules/audio/
audio_hw.c 375 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
377 ALOGV("adev_set_master_mute: %d", muted);
381 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
383 ALOGV("adev_get_master_mute: %d", *muted);
  /frameworks/av/media/libaudioclient/include/media/
IAudioFlinger.h 112 virtual status_t setMasterMute(bool muted) = 0;
122 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted) = 0;
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.h 163 MIX_RESULT (*get_mute) (MixAudio *mix, gboolean* muted);
431 * This function is used to mute and unmute audio playback. While muted, playback would continue but silently. This function is only valid when the session is configured to #MIX_DECODE_DIRECTRENDER mode.
433 * Note that playback volumn may change due to change of global settings while stream is muted.
440 * @muted: current mute state.
445 MIX_RESULT mix_audio_get_mute(MixAudio *mix, gboolean* muted);
  /external/webrtc/talk/media/base/
videocapturer.cc 50 // frames. Frontends should coordinate to update the video state of a muted
201 LOG(LS_WARNING) << "Camera cannot be unpaused while muted.";
227 bool VideoCapturer::MuteToBlackThenPause(bool muted) {
228 if (muted == IsMuted()) {
232 LOG(LS_INFO) << (muted ? "Muting" : "Unmuting") << " this video capturer.";
233 muted_ = muted; // Do this before calling Pause().
234 if (muted) {
404 // TODO(fbarchard): Avoid scale and convert if muted.
  /frameworks/av/services/audioflinger/
Threads.h 594 virtual void setMasterMute(bool muted) = 0;
596 virtual void setStreamMute(audio_stream_type_t stream, bool muted) = 0;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogControllerImpl.java 449 private boolean updateStreamMuteW(int stream, boolean muted) {
451 if (ss.muted == muted) return false;
452 ss.muted = muted;
454 Events.writeEvent(mContext, Events.EVENT_MUTE_CHANGED, stream, muted);
456 if (muted && isRinger(stream)) {
    [all...]
  /external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc 278 bool muted(false);
279 EXPECT_EQ(0, _audioDevice->MicrophoneMute(&muted));
280 muted = !muted;
281 EXPECT_EQ(0, _audioDevice->SetMicrophoneMute(muted));
282 if (muted)
531 bool muted(false);
532 EXPECT_EQ(0, _audioDevice->SpeakerMute(&muted));
533 muted = !muted;
    [all...]

Completed in 2180 milliseconds

1 2 3 4