Searched refs:hangup (Results 1 - 24 of 24) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalCall.java57 public void hangup() throws CallStateException { method in class:ImsExternalCall
H A DImsPhoneCall.java76 mOwner.hangup(this);
78 //Rlog.e(LOG_TAG, "dispose: unexpected error on hangup", ex);
118 hangup() throws CallStateException { method in class:ImsPhoneCall
119 mOwner.hangup(this);
H A DImsExternalConnection.java125 public void hangup() throws CallStateException { method in class:ImsExternalConnection
H A DImsPhoneConnection.java368 public void hangup() throws CallStateException { method in class:ImsPhoneConnection
370 mOwner.hangup(this);
H A DImsPhoneCallTracker.java1253 mForegroundCall.hangup();
1287 hangup(mRingingCall);
1634 public void hangup (ImsPhoneConnection conn) throws CallStateException { method in class:ImsPhoneCallTracker
1635 if (DBG) log("hangup connection");
1642 hangup(conn.getCall());
1647 public void hangup (ImsPhoneCall call) throws CallStateException { method in class:ImsPhoneCallTracker
1648 if (DBG) log("hangup call");
1658 if (Phone.DEBUG_PHONE) log("(ringing) hangup incoming");
1663 log("(foregnd) hangup dialing or alerting...");
1667 log("(foregnd) hangup foregroun
[all...]
H A DImsPhone.java431 mCT.hangup(getBackgroundCall());
433 if (DBG) Rlog.d(LOG_TAG, "hangup failed", e);
494 if (DBG) logd("MmiCode 1: hangup foreground");
495 mCT.hangup(call);
502 if (DBG) Rlog.d(LOG_TAG, "hangup failed", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCall.java58 public void hangup() throws CallStateException { method in class:GsmCdmaCall
59 mOwner.hangup(this);
141 * Note that at this point, the hangup request has been dispatched to the radio
H A DCall.java82 public abstract void hangup() throws CallStateException; method in class:Call
254 hangup();
H A DCallManager.java52 * 1. Call control and operation, such as dial() and hangup()
699 getActiveFgCall().hangup();
703 getActiveFgCall().hangup();
812 getActiveFgCall().hangup();
814 // the call to be hangup and resumed belongs to different phones
815 getActiveFgCall().hangup();
956 getActiveFgCall(subId).hangup();
1308 * or remote hangup or error.
2269 c.getCall().hangup();
H A DGsmCdmaCallTracker.java810 // Someone has already asked to hangup this call
821 "poll: hangupPendingMO, hangup conn " + i);
822 hangup(mConnections[i]);
824 Rlog.e(LOG_TAG, "unexpected error on hangup");
828 // Wait for hangup and repoll
1001 // clear the "local hangup" and "missed/rejected call"
1153 public void hangup(GsmCdmaConnection conn) throws CallStateException { method in class:GsmCdmaCallTracker
1163 if (Phone.DEBUG_PHONE) log("hangup: set hangupPendingMO to true");
1177 // the hangup reason is user ignoring or timing out. So conn.onDisconnect()
1191 Rlog.w(LOG_TAG,"GsmCdmaCallTracker WARN: hangup() o
1228 public void hangup(GsmCdmaCall call) throws CallStateException { method in class:GsmCdmaCallTracker
[all...]
H A DConnection.java504 public abstract void hangup() throws CallStateException; method in class:Connection
H A DGsmCdmaConnection.java351 public void hangup() throws CallStateException { method in class:GsmCdmaConnection
353 mOwner.hangup(this);
419 * Note that at this point, the hangup request has been dispatched to the radio
H A DGsmCdmaPhone.java887 if (DBG) logd("MmiCode 1: hangup foreground");
889 mCT.hangup(call);
897 "hangup failed", e);
H A DRIL.java841 radioProxy.hangup(rr.mSerial, gsmIndex);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmCdmaCallTest.java96 //verify hangup calls mCT.hangup
98 mCallUnderTest.hangup();
99 verify(mCT).hangup(mCallUnderTest);
H A DGsmCdmaCallTrackerTest.java148 mCTUT.hangup(mCTUT.mForegroundCall);
173 mCTUT.hangup(mCTUT.mForegroundCall);
193 logd("MO call hangup before established[ getting result from RIL ]");
195 * Didn't do anything for hangup, clear during handle poll result */
197 mCTUT.hangup(mCTUT.mForegroundCall);
306 mCTUT.hangup(mCTUT.mForegroundCall);
313 /* if we want to hang up foreground call which is alerting state, hangup all */
338 mCTUT.hangup(mCTUT.mForegroundCall);
H A DCallManagerTest.java259 verify(mFgCall, times(0)).hangup();
264 verify(mFgCall, times(1)).hangup();
271 verify(mFgCall, times(2)).hangup();
272 /* always hangup fgcall and both phone trigger swap */
H A DRILTest.java425 verify(mRadioProxy).hangup(mSerialNumberCaptor.capture(), eq(gsmIndex));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTest.java114 mImsCallUT.hangup();
115 verify(mImsCT).hangup(eq(mImsCallUT));
H A DImsPhoneCallTrackerTest.java402 mCTUT.hangup(mCTUT.mForegroundCall);
564 //hangup before call go to active
566 mCTUT.hangup(mCTUT.mForegroundCall);
H A DImsPhoneTest.java168 verify(mImsCT).hangup(mBackgroundCall);
189 verify(mImsCT).hangup(any(ImsPhoneCall.class));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMPhoneTest.java.broken252 mGSMPhone.getForegroundCall().hangup();
364 // One disconnected (local hangup) call
369 conn.hangup();
631 mGSMPhone.getForegroundCall().hangup();
645 // Test held and hangup held calls
738 mGSMPhone.getBackgroundCall().hangup();
797 // Test 1: local hangup in "DIALING" state
807 mGSMPhone.getForegroundCall().hangup();
816 // Test 2: local hangup in "ALERTING" state
832 mGSMPhone.getForegroundCall().hangup();
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java518 public void hangup() throws CallStateException { method in class:SipPhone.SipCall
521 if (SC_DBG) log("hangup: call " + getState()
527 c.hangup();
534 if (SC_DBG) log("hangup: dead call " + getState()
555 hangup();
952 public void hangup() throws CallStateException { method in class:SipPhone.SipConnection
955 log("hangup: conn=" + hidePii(mPeer.getUriString())
967 throw new CallStateException("hangup(): " + e);
/frameworks/base/config/
H A Dboot-image-profile.txt9957 HPLcom/android/internal/telephony/imsphone/ImsPhoneCallTracker;->hangup(Lcom/android/internal/telephony/imsphone/ImsPhoneCall;)V
9958 HPLcom/android/internal/telephony/imsphone/ImsPhoneCallTracker;->hangup(Lcom/android/internal/telephony/imsphone/ImsPhoneConnection;)V
9988 HPLcom/android/internal/telephony/imsphone/ImsPhoneConnection;->hangup()V
[all...]

Completed in 211 milliseconds