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

1 2 3 4

  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
AudioModeProvider.java 49 public void onAudioModeChange(int newMode, boolean muted) {
57 if (mMuted != muted) {
58 mMuted = muted;
102 void onMute(boolean muted);
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 158 boolean muted = false;
160 muted = !muted;
161 setChannelMuteUriAudioPlayer(0, muted);
166 boolean muted = false;
168 muted = !muted;
169 setChannelMuteUriAudioPlayer(1, muted);
190 boolean muted = false;
192 muted = !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 58 * @param muted {@code true} if the call is muted, {@code false} otherwise.
72 public CallAudioState(boolean muted, int route, int supportedRouteMask) {
73 this.isMuted = muted;
116 * @return {@code true} if the call is muted, {@code false} otherwise.
  /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/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);
  /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);
352 final boolean muted = msg.arg2 < 0;
353 if (muted != mMuted) {
354 mMuted = muted;
436 final boolean muted = mAudioManager.isStreamMute(mStreamType)
438 mUiHandler.postUpdateSlider(streamValue, mLastAudibleStreamVolume, muted);
  /packages/apps/Settings/src/com/android/settings/notification/
VolumeSeekBarPreference.java 123 public void onMuted(boolean muted, boolean zenMuted) {
124 if (mMuted == muted && mZenMuted == zenMuted) return;
125 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;
audio_hal_thunks.cpp 617 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
622 return adev->output->setMasterMute(muted);
626 bool *muted)
631 return adev->output->getMasterMute(muted);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogController.java 381 private boolean updateStreamMuteW(int stream, boolean muted) {
383 if (ss.muted == muted) return false;
384 ss.muted = muted;
386 Events.writeEvent(mContext, Events.EVENT_MUTE_CHANGED, stream, muted);
388 if (muted && isRinger(stream)) {
798 final boolean muted = intent
801 + " muted=" + muted);
    [all...]
  /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/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 331 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
333 ALOGV("adev_set_master_mute: %d", muted);
337 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
339 ALOGV("adev_get_master_mute: %d", *muted);
  /frameworks/av/include/media/
IAudioFlinger.h 121 virtual status_t setMasterMute(bool muted) = 0;
131 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.
videocapturer.h 209 virtual bool MuteToBlackThenPause(bool muted);
  /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...]
  /device/linaro/hikey/audio/
audio_hw.c 542 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
544 ALOGV("adev_set_master_mute: %d", muted);
548 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
550 ALOGV("adev_get_master_mute: %d", *muted);

Completed in 2531 milliseconds

1 2 3 4