Lines Matching refs:imsPhone

705         Phone imsPhone = mImsPhone;
706 if ( imsPhone != null && imsPhone.getRingingCall().isRinging() ) {
707 imsPhone.acceptCall(videoState);
829 Phone imsPhone = mImsPhone;
835 // call from CallManager. So we check the ringing call state of imsPhone first as
837 if ( imsPhone != null && imsPhone.getRingingCall().isRinging()) {
838 return imsPhone.getRingingCall();
990 Phone imsPhone = mImsPhone;
991 if (imsPhone != null
992 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) {
993 return imsPhone.handleInCallMmiCommands(dialString);
1050 Phone imsPhone = mImsPhone;
1058 && imsPhone != null
1059 && (imsPhone.isVolteEnabled() || imsPhone.isWifiCallingEnabled() ||
1060 (imsPhone.isVideoEnabled() && VideoProfile.isVideo(dialArgs.videoState)))
1061 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE);
1063 boolean useImsForEmergency = imsPhone != null
1067 && imsPhone.isImsAvailable();
1074 boolean useImsForUt = imsPhone != null && imsPhone.isUtEnabled();
1081 + ", imsPhone=" + imsPhone
1082 + ", imsPhone.isVolteEnabled()="
1083 + ((imsPhone != null) ? imsPhone.isVolteEnabled() : "N/A")
1084 + ", imsPhone.isVowifiEnabled()="
1085 + ((imsPhone != null) ? imsPhone.isWifiCallingEnabled() : "N/A")
1086 + ", imsPhone.isVideoEnabled()="
1087 + ((imsPhone != null) ? imsPhone.isVideoEnabled() : "N/A")
1088 + ", imsPhone.getServiceState().getState()="
1089 + ((imsPhone != null) ? imsPhone.getServiceState().getState() : "N/A"));
1097 return imsPhone.dial(dialString, dialArgs);
1100 "useImsForCall =" + useImsForCall + ", imsPhone =" + imsPhone);
1169 Phone imsPhone = mImsPhone;
1174 && imsPhone != null
1176 && !imsPhone.isVolteEnabled()
1178 && imsPhone.isWifiCallingEnabled()
1268 Phone imsPhone = mImsPhone;
1269 if ((imsPhone != null)
1270 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1271 || imsPhone.isUtEnabled())) {
1274 return imsPhone.handleUssdRequest(ussdRequest, wrappedCallback);
1732 Phone imsPhone = mImsPhone;
1733 if ((imsPhone != null)
1734 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1735 || imsPhone.isUtEnabled())) {
1736 imsPhone.getCallForwardingOption(commandInterfaceCFReason, onComplete);
1763 Phone imsPhone = mImsPhone;
1764 if ((imsPhone != null)
1765 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1766 || imsPhone.isUtEnabled())) {
1767 imsPhone.setCallForwardingOption(commandInterfaceCFAction,
1799 Phone imsPhone = mImsPhone;
1800 if ((imsPhone != null)
1801 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1802 || imsPhone.isUtEnabled())) {
1803 imsPhone.getCallBarring(facility, password, onComplete, serviceClass);
1816 Phone imsPhone = mImsPhone;
1817 if ((imsPhone != null)
1818 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1819 || imsPhone.isUtEnabled())) {
1820 imsPhone.setCallBarring(facility, lockState, password, onComplete, serviceClass);
1849 Phone imsPhone = mImsPhone;
1850 if ((imsPhone != null)
1851 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1852 || imsPhone.isUtEnabled())) {
1853 imsPhone.getOutgoingCallerIdDisplay(onComplete);
1865 Phone imsPhone = mImsPhone;
1866 if ((imsPhone != null)
1867 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1868 || imsPhone.isUtEnabled())) {
1869 imsPhone.setOutgoingCallerIdDisplay(commandInterfaceCLIRMode, onComplete);
1885 Phone imsPhone = mImsPhone;
1886 if ((imsPhone != null)
1887 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1888 || imsPhone.isUtEnabled())) {
1889 imsPhone.getCallWaiting(onComplete);
1904 Phone imsPhone = mImsPhone;
1905 if ((imsPhone != null)
1906 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)
1907 || imsPhone.isUtEnabled())) {
1908 imsPhone.setCallWaiting(enable, onComplete);
3621 Phone imsPhone = mImsPhone;
3622 if (imsPhone != null) {
3623 return imsPhone.isUtEnabled();