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

/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java46 protected LinkProperties mLinkProperties; field in class:BaseNetworkStateTracker
56 mLinkProperties = new LinkProperties();
97 return new LinkProperties(mLinkProperties);
178 mLinkProperties.addStackedLink(link);
183 mLinkProperties.removeStackedLink(link);
193 if (mLinkProperties != null) {
194 return mLinkProperties.getInterfaceName();
H A DMobileDataStateTracker.java68 private LinkProperties mLinkProperties; field in class:MobileDataStateTracker
195 mLinkProperties = intent.getParcelableExtra(
197 if (mLinkProperties == null) {
199 mLinkProperties = new LinkProperties();
201 mLinkProperties.setMtu(mContext.getResources().getInteger(
313 if (mLinkProperties != null) {
314 Slog.d(TAG, "LinkProperties = " + mLinkProperties.toString());
332 mLinkProperties = intent.getParcelableExtra(
334 if (mLinkProperties == null) {
336 mLinkProperties
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java269 private LinkProperties mLinkProperties; field in class:WifiWatchdogStateMachine
424 pw.println("mLinkProperties: [" + mLinkProperties + "]");
556 mLinkProperties = (LinkProperties) intent.getParcelableExtra(
H A DWifiStateMachine.java211 private LinkProperties mLinkProperties; field in class:WifiStateMachine
666 mLinkProperties = new LinkProperties();
1647 pw.println("mLinkProperties " + mLinkProperties);
2093 * Updates mLinkProperties by merging information from various sources.
2095 * This is needed because the information in mLinkProperties comes from multiple sources (DHCP,
2097 * link properties, we can't just assign them to mLinkProperties or we'd lose track of the
2100 * call this method to apply the change to mLinkProperties.
2102 * The information in mLinkProperties is currently obtained as follows:
2137 if (!newLp.equals(mLinkProperties)) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java159 private LinkProperties mLinkProperties = new LinkProperties(); field in class:DataConnection
254 return new LinkProperties(mLinkProperties);
270 mLinkProperties.setHttpProxy(proxy);
284 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties);
298 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy());
304 mLinkProperties = result.newLp;
629 mLinkProperties = new LinkProperties();
799 mLinkProperties = null;
1753 + " mLinkProperties=" + mLinkProperties
[all...]

Completed in 348 milliseconds