Home
last modified time | relevance | path

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

/packages/services/Telephony/src/com/android/phone/
DCallGatewayManager.java144 final String gatewayUri = intent.getStringExtra(EXTRA_GATEWAY_URI); in hasPhoneProviderExtras() local
146 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(gatewayUri); in hasPhoneProviderExtras()
199 public Uri gatewayUri; field in CallGatewayManager.RawGatewayInfo
202 public RawGatewayInfo(String packageName, Uri gatewayUri, in RawGatewayInfo() argument
205 this.gatewayUri = gatewayUri; in RawGatewayInfo()
210 return formatProviderUri(gatewayUri); in getFormattedGatewayNumber()
214 return TextUtils.isEmpty(packageName) || gatewayUri == null; in isEmpty()
DPhoneUtils.java553 final Uri gatewayUri = gatewayInfo.gatewayUri; in placeCall() local
557 + ", GW:'" + gatewayUri + "'" in placeCall()
562 + ", GW: " + (gatewayUri != null ? "non-null" : "null") in placeCall()
568 if (null != gatewayUri && in placeCall()
580 if (null == gatewayUri || !PhoneAccount.SCHEME_TEL.equals(gatewayUri.getScheme())) { in placeCall()
581 Log.e(LOG_TAG, "Unsupported URL:" + gatewayUri); in placeCall()
590 numberToDial = gatewayUri.getSchemeSpecificPart(); in placeCall()
628 if (gatewayUri == null) { in placeCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java391 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI)); in getGateWayInfoFromIntent() local
392 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) { in getGateWayInfoFromIntent()
393 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle); in getGateWayInfoFromIntent()