/frameworks/base/telephony/java/com/android/ims/ |
D | ImsConfig.java | 559 public int getProvisionedValue(int item) throws ImsException { in getProvisionedValue() 570 public int getConfigInt(int item) throws ImsException { in getConfigInt() 575 throw new ImsException("getInt()", e, in getConfigInt() 586 public String getProvisionedStringValue(int item) throws ImsException { in getProvisionedStringValue() 598 public String getConfigString(int item) throws ImsException { in getConfigString() 603 throw new ImsException("getConfigString()", e, in getConfigString() 614 public int setProvisionedValue(int item, int value) throws ImsException { in setProvisionedValue() 621 public int setProvisionedStringValue(int item, String value) throws ImsException { in setProvisionedStringValue() 634 public int setConfig(int item, int value) throws ImsException { in setConfig() 643 throw new ImsException("setConfig()", e, in setConfig() [all …]
|
D | ImsException.java | 28 public class ImsException extends Exception { class 35 public ImsException() { in ImsException() method in ImsException 38 public ImsException(String message, int code) { in ImsException() method in ImsException 43 public ImsException(String message, Throwable cause, int code) { in ImsException() method in ImsException
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsManager.java | 205 } catch (ImsException e) { 214 void connectionReady(ImsManager manager) throws ImsException; in connectionReady() 255 } catch (ImsException e) { 356 private void getImsService() throws ImsException { in getImsService() 369 private void notifyReady() throws ImsException { in notifyReady() 377 catch (ImsException e) { in notifyReady() 559 } catch (ImsException ie) { in setEnhanced4gLteModeSetting() 851 } catch (ImsException e) { in setVtSetting() 998 } catch (ImsException e) { in setWfcNonPersistent() 1183 } catch (ImsException e) { in setWfcModeInternal() [all …]
|
D | ImsCall.java | 731 public ImsCallProfile getLocalCallProfile() throws ImsException { in getLocalCallProfile() 734 throw new ImsException("No call session", in getLocalCallProfile() 742 throw new ImsException("getLocalCallProfile()", t, 0); in getLocalCallProfile() 752 public ImsCallProfile getRemoteCallProfile() throws ImsException { in getRemoteCallProfile() 755 throw new ImsException("No call session", in getRemoteCallProfile() 763 throw new ImsException("getRemoteCallProfile()", t, 0); in getRemoteCallProfile() 850 public String getCallExtra(String name) throws ImsException { in getCallExtra() 856 throw new ImsException("No call session", in getCallExtra() 864 throw new ImsException("getCallExtra()", t, 0); in getCallExtra() 1052 public void setMute(boolean muted) throws ImsException { in setMute() [all …]
|
D | ImsEcbm.java | 57 public void setEcbmStateListener(ImsEcbmStateListener ecbmListener) throws ImsException { in setEcbmStateListener() 61 throw new ImsException("setEcbmStateListener()", e, in setEcbmStateListener() 66 public void exitEmergencyCallbackMode() throws ImsException { in exitEmergencyCallbackMode() 70 throw new ImsException("exitEmergencyCallbackMode()", e, in exitEmergencyCallbackMode()
|
D | ImsMultiEndpoint.java | 73 throws ImsException { in setExternalCallStateListener() 79 throw new ImsException("setExternalCallStateListener could not be set.", e, in setExternalCallStateListener()
|
D | ImsUt.java | 611 AsyncResult.forMessage(result, null, new ImsException(errorString, error.mCode)); in sendFailureReport()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsException.java | 34 public final class ImsException extends Exception { class 73 public ImsException(@Nullable String message) { in ImsException() method in ImsException 81 public ImsException(@Nullable String message, @ImsErrorCode int code) { in ImsException() method in ImsException 92 public ImsException(@Nullable String message, @ImsErrorCode int code, in ImsException() method in ImsException
|
D | ImsMmTelManager.java | 364 @NonNull RegistrationCallback c) throws ImsException { in registerImsRegistrationCallback() 372 throw new ImsException("IMS not available on device.", in registerImsRegistrationCallback() 373 ImsException.CODE_ERROR_UNSUPPORTED_OPERATION); in registerImsRegistrationCallback() 379 throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE); in registerImsRegistrationCallback() 434 @NonNull CapabilityCallback c) throws ImsException { in registerMmTelCapabilityCallback() 442 throw new ImsException("IMS not available on device.", in registerMmTelCapabilityCallback() 443 ImsException.CODE_ERROR_UNSUPPORTED_OPERATION); in registerMmTelCapabilityCallback() 451 throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE); in registerMmTelCapabilityCallback()
|
D | ProvisioningManager.java | 225 @NonNull Callback callback) throws ImsException { in registerProvisioningChangedCallback() 227 throw new ImsException("IMS not available on device.", in registerProvisioningChangedCallback() 228 ImsException.CODE_ERROR_UNSUPPORTED_OPERATION); in registerProvisioningChangedCallback() 234 throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE); in registerProvisioningChangedCallback()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneMmiCode.java | 49 import com.android.ims.ImsException; 879 } 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() 924 } catch (ImsException e) { in processCode() 931 } catch (ImsException e) { in processCode() 943 } catch (ImsException e) { in processCode() 950 } catch (ImsException e) { in processCode() [all …]
|
D | ImsPhoneCallTracker.java | 79 import com.android.ims.ImsException; 230 } catch (ImsException e) { in onIncomingCall() 567 public void connectionReady(ImsManager manager) throws ImsException { in ImsPhoneCallTracker() 623 private void startListeningForCalls() throws ImsException { in startListeningForCalls() 672 } catch (ImsException e) { in stopListeningForCalls() 865 } catch (ImsException e) { in dial() 902 } catch (ImsException e) { in shouldNumberBePlacedOnIms() 1108 } catch (ImsException e) { in dialInternal() 1152 } catch (ImsException e) { in acceptCall() 1171 } catch (ImsException e) { in acceptCall() [all …]
|
D | ImsPhone.java | 80 import com.android.ims.ImsException; 932 } catch (ImsException e) { in getOutgoingCallerIdDisplay() 948 } catch (ImsException e) { in setOutgoingCallerIdDisplay() 966 } catch (ImsException e) { in getCallForwardingOption() 1011 } catch (ImsException e) { in setCallForwardingOption() 1029 } catch (ImsException e) { in getCallWaiting() 1056 } catch (ImsException e) { in setCallWaiting() 1102 } catch (ImsException e) { in getCallBarring() 1136 } catch (ImsException e) { in setCallBarring() 1218 if (e instanceof ImsException) { in getCommandException() [all …]
|
D | ImsPhoneCall.java | 31 import com.android.ims.ImsException; 260 } catch (ImsException e) { in setMute()
|
D | ImsPhoneConnection.java | 43 import com.android.ims.ImsException; 374 } catch (ImsException e) { in deflect() 781 } catch (ImsException e) { in onDisconnectConferenceParticipant() 999 } catch (ImsException e) { in updateMediaCapabilities()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ImsSmsDispatcher.java | 36 import com.android.ims.ImsException; 165 } catch (ImsException e) { 204 } catch (ImsException e) { 217 public void connectionReady(ImsManager manager) throws ImsException { in ImsSmsDispatcher() 236 private void setListeners() throws ImsException { in setListeners() 305 } catch (ImsException e) { in getFormat() 378 } catch (ImsException e) { in sendSms()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCallTrackerTest.java | 67 import com.android.ims.ImsException; 515 } catch (ImsException ie) { in testEmergencyDialSuppressClir() 632 public void testDialImsServiceUnavailable() throws ImsException { in testDialImsServiceUnavailable() 633 doThrow(new ImsException("Test Exception", ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN)).when( in testDialImsServiceUnavailable() 659 public void testTTYImsServiceUnavailable() throws ImsException { in testTTYImsServiceUnavailable() 660 doThrow(new ImsException("Test Exception", ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN)).when( in testTTYImsServiceUnavailable() 934 } catch (ImsException ie) { in placeCallAndMakeActive()
|
/frameworks/opt/net/ims/ |
D | README.txt | 70 ImsException
|
/frameworks/base/api/ |
D | system-current.txt | 8565 public final class ImsException extends java.lang.Exception { 8566 ctor public ImsException(@Nullable String); 8567 ctor public ImsException(@Nullable String, int); 8568 ctor public ImsException(@Nullable String, int, @Nullable Throwable); 8601 …roid.telephony.ims.ImsMmTelManager.RegistrationCallback) throws android.telephony.ims.ImsException; 8602 …ndroid.telephony.ims.ImsMmTelManager.CapabilityCallback) throws android.telephony.ims.ImsException; 9041 …Null android.telephony.ims.ProvisioningManager.Callback) throws android.telephony.ims.ImsException;
|
/frameworks/base/config/ |
D | preloaded-classes | 4471 com.android.ims.ImsException
|