/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
H A D | ImsExternalConnection.java | 130 public void deflect(String number) throws CallStateException { method in class:ImsExternalConnection
|
H A D | ImsPhoneConnection.java | 351 public void deflect(String number) throws CallStateException { method in class:ImsPhoneConnection 355 mImsCall.deflect(number); 357 throw new CallStateException("no valid ims call to deflect"); 360 throw new CallStateException("cannot deflect call");
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
H A D | ImsCallSessionImplBase.java | 175 public void deflect(String deflectNumber) { 176 ImsCallSessionImplBase.this.deflect(deflectNumber); 403 * @param deflectNumber number to deflect the call 405 public void deflect(String deflectNumber) { method in class:ImsCallSessionImplBase
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
H A D | ImsCallSessionImplBase.java | 187 * @param deflectNumber number to deflect the call 190 public void deflect(String deflectNumber) { method in class:ImsCallSessionImplBase
|
/frameworks/base/telephony/java/android/telephony/ims/ |
H A D | ImsCallSession.java | 761 public void deflect(String number) { method in class:ImsCallSession 767 miSession.deflect(number);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | GsmCdmaConnection.java | 360 public void deflect(String number) throws CallStateException { method in class:GsmCdmaConnection 362 throw new CallStateException ("deflect is not supported for CS");
|
H A D | Connection.java | 499 public abstract void deflect(String number) throws CallStateException; method in class:Connection
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
H A D | SipPhone.java | 1010 public void deflect(String number) throws CallStateException { method in class:SipPhone.SipConnection 1012 throw new CallStateException ("deflect is not supported for SipPhone");
|
/frameworks/base/telecomm/java/android/telecom/ |
H A D | ConnectionService.java | 358 public void deflect(String callId, Uri address, Session.Info sessionInfo) { 870 deflect((String) args.arg1, (Uri) args.arg2); 1635 private void deflect(String callId, Uri address) { method in class:ConnectionService 1636 Log.d(this, "deflect %s", callId); 1637 findConnectionForAction(callId, "deflect").onDeflect(address);
|
H A D | Call.java | 355 /** Call supports the deflect feature. */ 1310 * Instructs this {@link #STATE_RINGING} {@code Call} to deflect. 1314 public void deflect(Uri address) { method in class:Call
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
H A D | ImsCall.java | 1183 * @throws ImsException if the IMS service fails to deflect the call 1185 public void deflect(String number) throws ImsException { method in class:ImsCall 1186 logi("deflect :: session=" + mSession + ", number=" + Rlog.pii(TAG, number)); 1190 throw new ImsException("No call to deflect", 1195 mSession.deflect(number); 1197 loge("deflect :: ", t); 1198 throw new ImsException("deflect()", t, 0);
|