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.java151 final Uri gatewayUri = null; in placeOtaspCall() local
155 + ", GW:'" + gatewayUri + "'"); in placeOtaspCall()
158 + ", GW: " + (gatewayUri != null ? "non-null" : "null")); in placeOtaspCall()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessorHelper.java179 String gatewayPackageName, Uri gatewayUri, Uri destinationUri, String postdialDigits) { in getGatewayInfoFromGatewayUri() argument
180 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGatewayInfoFromGatewayUri()
181 Uri gatewayWithPostdial = gatewayUri; in getGatewayInfoFromGatewayUri()
182 if (gatewayUri != null && !TextUtils.isEmpty(postdialDigits)) { in getGatewayInfoFromGatewayUri()
184 .scheme(gatewayUri.getScheme()) in getGatewayInfoFromGatewayUri()
185 .encodedOpaquePart(gatewayUri.getSchemeSpecificPart() + postdialDigits) in getGatewayInfoFromGatewayUri()
DCallRedirectionProcessor.java191 public void redirectCall(Uri gatewayUri, PhoneAccountHandle targetPhoneAccount, in redirectCall() argument
199 gatewayUri, mDestinationUri, mPostDialDigits); in redirectCall()
207 + Log.pii(gatewayUri) + " [phoneAccountHandle]" in redirectCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java478 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI)); in getGateWayInfoFromIntent() local
479 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGateWayInfoFromIntent()
480 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle); in getGateWayInfoFromIntent()