Searched defs:deflect (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalConnection.java130 public void deflect(String number) throws CallStateException { method in class:ImsExternalConnection
H A DImsPhoneConnection.java351 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 DImsCallSessionImplBase.java175 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 DImsCallSessionImplBase.java187 * @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 DImsCallSession.java761 public void deflect(String number) { method in class:ImsCallSession
767 miSession.deflect(number);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaConnection.java360 public void deflect(String number) throws CallStateException { method in class:GsmCdmaConnection
362 throw new CallStateException ("deflect is not supported for CS");
H A DConnection.java499 public abstract void deflect(String number) throws CallStateException; method in class:Connection
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java1010 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 DConnectionService.java358 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 DCall.java355 /** 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 DImsCall.java1183 * @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);

Completed in 80 milliseconds