Home
last modified time | relevance | path

Searched refs:ImsException (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/
DImsConfig.java550 public int getProvisionedValue(int item) throws ImsException { in getProvisionedValue()
555 throw new ImsException("getValue()", e, in getProvisionedValue()
573 public String getProvisionedStringValue(int item) throws ImsException { in getProvisionedStringValue()
578 throw new ImsException("getProvisionedStringValue()", e, in getProvisionedStringValue()
599 throws ImsException { in setProvisionedValue()
608 throw new ImsException("setProvisionedValue()", e, in setProvisionedValue()
631 throws ImsException { in setProvisionedStringValue()
636 throw new ImsException("setProvisionedStringValue()", e, in setProvisionedStringValue()
657 ImsConfigListener listener) throws ImsException { in getFeatureValue()
665 throw new ImsException("getFeatureValue()", e, in getFeatureValue()
[all …]
DImsException.java24 public class ImsException extends Exception { class
31 public ImsException() { in ImsException() method in ImsException
34 public ImsException(String message, int code) { in ImsException() method in ImsException
39 public ImsException(String message, Throwable cause, int code) { in ImsException() method in ImsException
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java296 } catch (ImsException ie) { in setEnhanced4gLteModeSetting()
330 } catch (ImsException ie) { in setEnhanced4gLteModeSettingForSlot()
591 } catch (ImsException e) { in setVtSetting()
622 } catch (ImsException e) { in setVtSettingForSlot()
721 } catch (ImsException e) { in setWfcSetting()
768 } catch (ImsException e) { in setWfcNonPersistentForSlot()
931 } catch (ImsException e) { in setWfcModeInternal()
947 } catch (ImsException e) { in setWfcModeInternalForSlot()
1018 } catch (ImsException e) { in setWfcRoamingSettingInternal()
1170 } catch (ImsException ie) { in doInBackground()
[all …]
DImsCall.java673 public ImsCallProfile getLocalCallProfile() throws ImsException { in getLocalCallProfile()
676 throw new ImsException("No call session", in getLocalCallProfile()
684 throw new ImsException("getLocalCallProfile()", t, 0); in getLocalCallProfile()
694 public ImsCallProfile getRemoteCallProfile() throws ImsException { in getRemoteCallProfile()
697 throw new ImsException("No call session", in getRemoteCallProfile()
705 throw new ImsException("getRemoteCallProfile()", t, 0); in getRemoteCallProfile()
792 public String getCallExtra(String name) throws ImsException { in getCallExtra()
798 throw new ImsException("No call session", in getCallExtra()
806 throw new ImsException("getCallExtra()", t, 0); in getCallExtra()
994 public void setMute(boolean muted) throws ImsException { in setMute()
[all …]
DImsEcbm.java63 public void setEcbmStateListener(ImsEcbmStateListener ecbmListener) throws ImsException { in setEcbmStateListener()
67 throw new ImsException("setEcbmStateListener()", e, in setEcbmStateListener()
72 public void exitEmergencyCallbackMode() throws ImsException { in exitEmergencyCallbackMode()
76 throw new ImsException("exitEmergencyCallbackMode()", e, in exitEmergencyCallbackMode()
DImsMultiEndpoint.java71 throws ImsException { in setExternalCallStateListener()
77 throw new ImsException("setExternalCallStateListener could not be set.", e, in setExternalCallStateListener()
DImsUt.java547 AsyncResult.forMessage(result, null, new ImsException(errorString, error.mCode)); in sendFailureReport()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneMmiCode.java31 import com.android.ims.ImsException;
841 } catch (ImsException e) { in processCode()
848 } catch (ImsException e) { in processCode()
855 } catch (ImsException e) { in processCode()
867 } catch (ImsException e) { in processCode()
874 } catch (ImsException e) { in processCode()
886 } catch (ImsException e) { in processCode()
893 } catch (ImsException e) { in processCode()
905 } catch (ImsException e) { in processCode()
912 } catch (ImsException e) { in processCode()
[all …]
DImsPhoneCallTracker.java63 import com.android.ims.ImsException;
196 } catch (ImsException e) {
608 } catch (ImsException e) {
664 private void getImsService() throws ImsException { in getImsService()
675 private void startListeningForCalls() throws ImsException { in startListeningForCalls()
709 } catch (ImsException e) { in stopListeningForCalls()
850 } catch (ImsException e) { in dial()
1018 } catch (ImsException e) { in dialInternal()
1062 } catch (ImsException e) { in acceptCall()
1081 } catch (ImsException e) { in acceptCall()
[all …]
DImsPhone.java55 import com.android.ims.ImsException;
797 } catch (ImsException e) { in getOutgoingCallerIdDisplay()
813 } catch (ImsException e) { in setOutgoingCallerIdDisplay()
830 } catch (ImsException e) { in getCallForwardingOption()
873 } catch (ImsException e) { in setCallForwardingOption()
890 } catch (ImsException e) { in getCallWaiting()
908 } catch (ImsException e) { in setCallWaiting()
943 } catch (ImsException e) { in getCallBarring()
967 } catch (ImsException e) { in setCallBarring()
1032 if (e instanceof ImsException) { in getCommandException()
[all …]
DImsPhoneCall.java30 import com.android.ims.ImsException;
254 } catch (ImsException e) { in setMute()
DImsPhoneConnection.java38 import com.android.ims.ImsException;
710 } catch (ImsException e) { in onDisconnectConferenceParticipant()
882 } catch (ImsException e) { in updateMediaCapabilities()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTrackerTest.java53 import com.android.ims.ImsException;
456 public void testDialImsServiceUnavailable() throws ImsException { in testDialImsServiceUnavailable()
457 doThrow(new ImsException("Test Exception", ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN)).when( in testDialImsServiceUnavailable()
483 public void testTTYImsServiceUnavailable() throws ImsException { in testTTYImsServiceUnavailable()
484 doThrow(new ImsException("Test Exception", ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN)).when( in testTTYImsServiceUnavailable()
/frameworks/opt/net/ims/
DREADME.txt70 ImsException
/frameworks/base/
Dcompiled-classes-phone5178 com.android.ims.ImsException