Home
last modified time | relevance | path

Searched refs:gatewayUri (Results 1 – 5 of 5) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DCallGatewayManager.java34 public Uri gatewayUri; field in CallGatewayManager.RawGatewayInfo
37 public RawGatewayInfo(String packageName, Uri gatewayUri, in RawGatewayInfo() argument
40 this.gatewayUri = gatewayUri; in RawGatewayInfo()
45 return TextUtils.isEmpty(packageName) || gatewayUri == null; in isEmpty()
DPhoneUtils.java166 final Uri gatewayUri = gatewayInfo.gatewayUri; in placeCall() local
170 + ", GW:'" + gatewayUri + "'" in placeCall()
175 + ", GW: " + (gatewayUri != null ? "non-null" : "null") in placeCall()
181 if (null != gatewayUri && in placeCall()
193 if (null == gatewayUri || !PhoneAccount.SCHEME_TEL.equals(gatewayUri.getScheme())) { in placeCall()
194 Log.e(LOG_TAG, "Unsupported URL:" + gatewayUri); in placeCall()
203 numberToDial = gatewayUri.getSchemeSpecificPart(); in placeCall()
232 if (gatewayUri == null) { in placeCall()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessorHelper.java167 String gatewayPackageName, Uri gatewayUri, Uri destinationUri) { in getGatewayInfoFromGatewayUri() argument
168 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGatewayInfoFromGatewayUri()
169 return new GatewayInfo(gatewayPackageName, gatewayUri, destinationUri); in getGatewayInfoFromGatewayUri()
DCallRedirectionProcessor.java191 public void redirectCall(Uri gatewayUri, PhoneAccountHandle targetPhoneAccount, in redirectCall() argument
199 gatewayUri, mDestinationUri); in redirectCall()
207 + Log.pii(gatewayUri) + " [phoneAccountHandle]" in redirectCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java475 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI)); in getGateWayInfoFromIntent() local
476 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGateWayInfoFromIntent()
477 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle); in getGateWayInfoFromIntent()