Searched refs:setMute (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCallManagerTest.java220 CallManager.getInstance().setMute(false);
221 verify(mPhone, times(0)).setMute(anyBoolean());
225 CallManager.getInstance().setMute(false);
226 verify(mPhone, times(1)).setMute(false);
228 CallManager.getInstance().setMute(true);
229 verify(mPhone, times(1)).setMute(true);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl101 void setMute(boolean muted);
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java154 public void setMute(boolean muted) {
155 ImsCallSessionImplBase.this.setMute(muted);
355 public void setMute(boolean muted) { method in class:ImsCallSessionImplBase
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java110 public abstract int setMute(boolean mute); method in class:RadioTuner
H A DTunerAdapter.java103 public int setMute(boolean mute) { method in class:TunerAdapter
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCall.java248 setMute(boolean mute) { method in class:ImsPhoneCall
253 imsCall.setMute(mute);
255 Rlog.e(LOG_TAG, "setMute failed : " + e.getMessage());
H A DImsPhoneCommandInterface.java190 public void setMute (boolean enableMute, Message response) { method in class:ImsPhoneCommandInterface
H A DImsPhoneCallTracker.java1160 setMute(false);
1238 setMute(false);
1265 setMute(false);
1580 public void setMute(boolean mute) { method in class:ImsPhoneCallTracker
1582 mForegroundCall.setMute(mute);
H A DImsPhone.java757 public void setMute(boolean muted) { method in class:ImsPhone
758 mCT.setMute(muted);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java157 mRingingCall.setMute(false);
208 mForegroundCall.setMute(false);
358 public void setMute(boolean muted) { method in class:SipPhone
360 mForegroundCall.setMute(muted);
614 void setMute(boolean muted) { method in class:SipPhone.SipCall
615 if (SC_DBG) log("setMute: muted=" + muted);
617 ((SipConnection) c).setMute(muted);
904 void setMute(boolean muted) { method in class:SipPhone.SipConnection
H A DSipCommandInterface.java191 public void setMute (boolean enableMute, Message response) { method in class:SipCommandInterface
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/tests/functional/
H A DRadioTunerTest.java234 int ret = mRadioTuner.setMute(true);
239 ret = mRadioTuner.setMute(false);
249 int ret = mRadioTuner.setMute(false);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java329 setMute(false);
439 setMute(false);
526 setMute(false);
530 setMute(false);
1216 public void setMute(boolean mute) { method in class:GsmCdmaCallTracker
1218 mCi.setMute(mDesiredMute, null);
H A DPhoneInternalInterface.java751 void setMute(boolean muted); method in interface:PhoneInternalInterface
758 * fired when setMute() is called.
H A DCallManager.java1155 public void setMute(boolean muted) { method in class:CallManager
1157 Rlog.d(LOG_TAG, " setMute(" + muted + ")");
1162 getActiveFgCall().getPhone().setMute(muted);
1166 Rlog.d(LOG_TAG, "End setMute(" + muted + ")");
1176 * fired when setMute() is called.
H A DCommandsInterface.java1015 void setMute (boolean enableMute, Message response); method in interface:CommandsInterface
H A DGsmCdmaPhone.java1976 public void setMute(boolean muted) { method in class:GsmCdmaPhone
1977 mCT.setMute(muted);
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsCallSession.java683 public void setMute(boolean muted) { method in class:ImsCallSession
689 miSession.setMute(muted);
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
H A DImsCallSessionImplBase.java136 public void setMute(boolean muted) { method in class:ImsCallSessionImplBase
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneTest.java338 mImsPhoneUT.setMute(true);
339 verify(mImsCT).setMute(true);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken310 public void setMute(boolean enableMute, Message response) {
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java1034 public void setMute(boolean muted) throws ImsException { method in class:ImsCall
1037 logi("setMute :: turning mute " + (muted ? "on" : "off"));
1041 mSession.setMute(muted);
1043 loge("setMute :: ", t);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommandsVerifier.java777 public void setMute(boolean enableMute, Message response) { method in class:SimulatedCommandsVerifier
H A DSimulatedCommands.java848 public void setMute (boolean enableMute, Message result) {unimplemented(result);} method in class:SimulatedCommands
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1259 public void setMute(boolean muted) { method in class:PhoneMock

Completed in 3024 milliseconds

12