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.java152 final Uri gatewayUri = null; in placeOtaspCall() local
156 + ", GW:'" + gatewayUri + "'"); in placeOtaspCall()
159 + ", GW: " + (gatewayUri != null ? "non-null" : "null")); in placeOtaspCall()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessorHelper.java191 String gatewayPackageName, Uri gatewayUri, Uri destinationUri, String postdialDigits) { in getGatewayInfoFromGatewayUri() argument
192 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGatewayInfoFromGatewayUri()
193 Uri gatewayWithPostdial = gatewayUri; in getGatewayInfoFromGatewayUri()
194 if (gatewayUri != null && !TextUtils.isEmpty(postdialDigits)) { in getGatewayInfoFromGatewayUri()
196 .scheme(gatewayUri.getScheme()) in getGatewayInfoFromGatewayUri()
197 .encodedOpaquePart(gatewayUri.getSchemeSpecificPart() + postdialDigits) in getGatewayInfoFromGatewayUri()
DCallRedirectionProcessor.java229 public void redirectCall(Uri gatewayUri, PhoneAccountHandle targetPhoneAccount, in redirectCall() argument
237 gatewayUri, mDestinationUri, mPostDialDigits); in redirectCall()
245 + Log.pii(gatewayUri) + " [phoneAccountHandle]" in redirectCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java583 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI)); in getGateWayInfoFromIntent() local
584 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGateWayInfoFromIntent()
585 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle); in getGateWayInfoFromIntent()