Searched defs:mLinkProperties (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java50 private LinkProperties mLinkProperties = null; field in class:PreciseDataConnectionState
66 mLinkProperties = linkProperties;
87 mLinkProperties = (LinkProperties)in.readParcelable(null);
153 return mLinkProperties;
175 out.writeParcelable(mLinkProperties, flags);
200 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode());
238 if (mLinkProperties == null) {
239 if (other.mLinkProperties != null) {
242 } else if (!mLinkProperties
[all...]
/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java46 protected LinkProperties mLinkProperties; field in class:BaseNetworkStateTracker
57 mLinkProperties = new LinkProperties();
98 return new LinkProperties(mLinkProperties);
174 mLinkProperties.addStackedLink(link);
179 mLinkProperties.removeStackedLink(link);
189 if (mLinkProperties != null) {
190 return mLinkProperties.getInterfaceName();
H A DMobileDataStateTracker.java68 private LinkProperties mLinkProperties; field in class:MobileDataStateTracker
194 mLinkProperties = intent.getParcelableExtra(
196 if (mLinkProperties == null) {
198 mLinkProperties = new LinkProperties();
200 mLinkProperties.setMtu(mContext.getResources().getInteger(
312 if (mLinkProperties != null) {
313 Slog.d(TAG, "LinkProperties = " + mLinkProperties);
331 mLinkProperties = intent.getParcelableExtra(
333 if (mLinkProperties == null) {
335 mLinkProperties
[all...]
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java61 * - All accesses to mLinkProperties must be synchronized(this). All the other
79 private final LinkProperties mLinkProperties; field in class:NetlinkTracker
88 mLinkProperties = new LinkProperties();
89 mLinkProperties.setInterfaceName(mInterfaceName);
112 changed = mLinkProperties.addLinkAddress(address);
126 changed = mLinkProperties.removeLinkAddress(address);
140 changed = mLinkProperties.addRoute(route);
154 changed = mLinkProperties.removeRoute(route);
169 mDnsServerRepository.setDnsServersOn(mLinkProperties);
180 return new LinkProperties(mLinkProperties);
[all...]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java104 private LinkProperties mLinkProperties; field in class:EthernetNetworkFactory
108 mLinkProperties = new LinkProperties();
222 mLinkProperties = new LinkProperties();
252 mLinkProperties);
256 mNetworkAgent.sendLinkProperties(mLinkProperties);
312 mLinkProperties = linkProperties;
318 NETWORK_TYPE, mNetworkInfo, mNetworkCapabilities, mLinkProperties,
325 mLinkProperties.clear();
414 mLinkProperties = new LinkProperties();
445 pw.println("LinkProperties: " + mLinkProperties);
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiWatchdogStateMachine.java268 private LinkProperties mLinkProperties; field in class:WifiWatchdogStateMachine
423 pw.println("mLinkProperties: [" + mLinkProperties + "]");
555 mLinkProperties = (LinkProperties) intent.getParcelableExtra(
H A DWifiStateMachine.java279 private LinkProperties mLinkProperties; field in class:WifiStateMachine
861 mLinkProperties = new LinkProperties();
2298 pw.println("mLinkProperties " + mLinkProperties);
2736 if (mLinkProperties != null) {
2737 if (mLinkProperties.hasIPv4Address()) {
2740 if (mLinkProperties.hasGlobalIPv6Address()) {
2743 if (mLinkProperties.hasIPv4DefaultRoute()) {
2746 if (mLinkProperties.hasIPv6DefaultRoute()) {
2749 if (mLinkProperties
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java175 private LinkProperties mLinkProperties = new LinkProperties(); field in class:DataConnection
275 return new LinkProperties(mLinkProperties);
291 mLinkProperties.setHttpProxy(proxy);
306 Collection <InetAddress> addresses = mLinkProperties.getAddresses();
323 Collection <InetAddress> addresses = mLinkProperties.getAddresses();
339 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties);
353 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy());
357 mLinkProperties = result.newLp;
368 mNetworkAgent.sendLinkProperties(mLinkProperties);
735 mLinkProperties
[all...]

Completed in 331 milliseconds