HomeSort by relevance Sort by last modified time
    Searched refs:gatewayUri (Results 1 - 2 of 2) sorted by null

  /packages/services/Telephony/src/com/android/phone/
CallGatewayManager.java 146 final String gatewayUri = intent.getStringExtra(EXTRA_GATEWAY_URI);
148 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(gatewayUri);
201 public Uri gatewayUri;
204 public RawGatewayInfo(String packageName, Uri gatewayUri,
207 this.gatewayUri = gatewayUri;
212 return formatProviderUri(gatewayUri);
216 return TextUtils.isEmpty(packageName) || gatewayUri == null;
PhoneUtils.java 659 * @param gatewayUri Is the address used to setup the connection, null
667 final Uri gatewayUri = gatewayInfo.gatewayUri;
671 + ", GW:'" + gatewayUri + "'"
676 + ", GW: " + (gatewayUri != null ? "non-null" : "null")
682 if (null != gatewayUri &&
694 if (null == gatewayUri || !Constants.SCHEME_TEL.equals(gatewayUri.getScheme())) {
695 Log.e(LOG_TAG, "Unsupported URL:" + gatewayUri);
704 numberToDial = gatewayUri.getSchemeSpecificPart()
    [all...]

Completed in 534 milliseconds