Searched refs:mLinkProperties (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java50 private LinkProperties mLinkProperties; field in class:WifiStateTracker
63 mLinkProperties = new LinkProperties();
179 return new LinkProperties(mLinkProperties);
221 mLinkProperties = intent.getParcelableExtra(
223 if (mLinkProperties == null) {
224 mLinkProperties = new LinkProperties();
244 mLinkProperties = (LinkProperties) intent.getParcelableExtra(
H A DWifiStateMachine.java189 private LinkProperties mLinkProperties; field in class:WifiStateMachine
592 mLinkProperties = new LinkProperties();
600 mLinkProperties.clear();
1170 sb.append("mLinkProperties ").append(mLinkProperties).append(LS);
1608 mLinkProperties = mWifiConfigStore.getLinkProperties(mLastNetworkId);
1611 mLinkProperties = mDhcpInfoInternal.makeLinkProperties();
1613 mLinkProperties.setHttpProxy(mWifiConfigStore.getProxyProperties(mLastNetworkId));
1615 mLinkProperties.setInterfaceName(mInterfaceName);
1618 mLinkProperties
[all...]
H A DWifiWatchdogStateMachine.java270 private LinkProperties mLinkProperties; field in class:WifiWatchdogStateMachine
424 pw.println("mLinkProperties: [" + mLinkProperties + "]");
556 mLinkProperties = (LinkProperties) intent.getParcelableExtra(
/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java45 protected LinkProperties mLinkProperties; field in class:BaseNetworkStateTracker
55 mLinkProperties = new LinkProperties();
90 return new LinkProperties(mLinkProperties);
H A DDummyDataStateTracker.java41 private LinkProperties mLinkProperties; field in class:DummyDataStateTracker
192 return new LinkProperties(mLinkProperties);
H A DEthernetDataTracker.java48 private LinkProperties mLinkProperties; field in class:EthernetDataTracker
110 mLinkProperties = new LinkProperties();
142 mLinkProperties.clear();
178 mLinkProperties = dhcpInfoInternal.makeLinkProperties();
179 mLinkProperties.setInterfaceName(mIface);
366 return new LinkProperties(mLinkProperties);
H A DMobileDataStateTracker.java65 private LinkProperties mLinkProperties; field in class:MobileDataStateTracker
238 mLinkProperties = intent.getParcelableExtra(
240 if (mLinkProperties == null) {
242 mLinkProperties = new LinkProperties();
256 mLinkProperties = intent.getParcelableExtra(
258 if (mLinkProperties == null) {
260 mLinkProperties = new LinkProperties();
596 return new LinkProperties(mLinkProperties);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothTetheringDataTracker.java62 private LinkProperties mLinkProperties; field in class:BluetoothTetheringDataTracker
76 mLinkProperties = new LinkProperties();
236 return new LinkProperties(mLinkProperties);
303 mLinkProperties.addLinkAddress(new LinkAddress(NetworkUtils.numericToInetAddress(ip), PrefixLen));
305 mLinkProperties.addRoute(ri);
307 mLinkProperties.addDns(NetworkUtils.numericToInetAddress(dns1));
309 mLinkProperties.addDns(NetworkUtils.numericToInetAddress(dns2));
310 mLinkProperties.setInterfaceName(iface);
363 mLinkProperties.clear();
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DAccessPointParserHelper.java121 LinkProperties mLinkProperties = null;
158 mLinkProperties = new LinkProperties();
178 if (mLinkProperties != null) {
180 config.linkProperties = mLinkProperties;
186 mLinkProperties = null;
307 mLinkProperties.addRoute(new RouteInfo(InetAddress.getByName(gwAddr)));
319 mLinkProperties.addLinkAddress(new LinkAddress(mInetAddr, nwPrefixLength));
331 mLinkProperties.addDns(InetAddress.getByName(dnsAddr));
343 mLinkProperties.addDns(InetAddress.getByName(dnsAddr));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDataConnection.java243 protected LinkProperties mLinkProperties = new LinkProperties(); field in class:DataConnection
303 mLinkProperties = null;
531 mLinkProperties = new LinkProperties();
614 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties);
628 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy());
634 mLinkProperties = result.newLp;
694 LinkProperties lp = new LinkProperties(mLinkProperties);
702 mLinkProperties.setHttpProxy(proxy);
1273 pw.println(" mLinkProperties=" + mLinkProperties);
[all...]

Completed in 98 milliseconds