Home
last modified time | relevance | path

Searched refs:mProxyAddress (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/voip/src/java/android/net/sip/
DSipProfile.java54 private String mProxyAddress; field in SipProfile
84 private String mProxyAddress; field in SipProfile.Builder
109 mProxyAddress = profile.getProxyAddress(); in Builder()
234 mProxyAddress = outboundProxy; in setOutboundProxy()
284 if (!TextUtils.isEmpty(mProxyAddress)) { in build()
286 mAddressFactory.createURI(fix(mProxyAddress)); in build()
287 mProfile.mProxyAddress = uri.getHost(); in build()
313 mProxyAddress = in.readString(); in SipProfile()
328 out.writeString(mProxyAddress); in writeToParcel()
364 if (!TextUtils.isEmpty(mProxyAddress)) { in getUriString()
[all …]
/frameworks/base/telephony/java/android/telephony/data/
DApnSetting.java219 private final InetAddress mProxyAddress; field in ApnSetting
372 return mProxyAddress; in getProxyAddress()
543 this.mProxyAddress = builder.mProxyAddress; in ApnSetting()
662 … apn.mProxyAddress, apn.mProxyPort, apn.mMmsc, apn.mMmsProxyAddress, apn.mMmsProxyPort, apn.mUser, in makeApnSetting()
677 .append(", ").append(inetAddressToString(mProxyAddress)) in toString()
754 && Objects.equals(mProxyAddress, other.mProxyAddress) in equals()
799 && Objects.equals(mProxyAddress, other.mProxyAddress) in equals()
833 && xorEquals(this.mProxyAddress, other.mProxyAddress) in similar()
886 apnValue.put(Telephony.Carriers.PROXY, mProxyAddress == null ? "" in toContentValues()
887 : inetAddressToString(mProxyAddress)); in toContentValues()
[all …]