HomeSort by relevance Sort by last modified time
    Searched defs:mLinkProperties (Results 1 - 9 of 9) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
BluetoothTetheringNetworkFactory.java 60 private LinkProperties mLinkProperties;
70 mLinkProperties = new LinkProperties();
86 linkProperties = mLinkProperties;
110 mLinkProperties = dhcpResults.toLinkProperties(
117 mNetworkInfo, mNetworkCapabilities, mLinkProperties, NETWORK_SCORE) {
137 if (!TextUtils.isEmpty(mLinkProperties.getInterfaceName())) {
138 NetworkUtils.stopDhcp(mLinkProperties.getInterfaceName());
140 mLinkProperties.clear();
159 if (mLinkProperties.getInterfaceName() != null) {
163 mLinkProperties = new LinkProperties()
    [all...]
  /frameworks/base/core/java/com/android/server/net/
NetlinkTracker.java 61 * - All accesses to mLinkProperties must be synchronized(this). All the other
79 private final LinkProperties mLinkProperties;
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/base/telephony/java/android/telephony/
PreciseDataConnectionState.java 50 private LinkProperties mLinkProperties = null;
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.equals(other.mLinkProperties))
    [all...]
  /frameworks/base/core/java/android/net/
BaseNetworkStateTracker.java 46 protected LinkProperties mLinkProperties;
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();
MobileDataStateTracker.java 68 private LinkProperties mLinkProperties;
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 = new LinkProperties()
    [all...]
  /frameworks/opt/net/ethernet/java/com/android/server/ethernet/
EthernetNetworkFactory.java 104 private LinkProperties mLinkProperties;
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/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnection.java 175 private LinkProperties mLinkProperties = new LinkProperties();
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 = new LinkProperties()
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiWatchdogStateMachine.java 268 private LinkProperties mLinkProperties;
423 pw.println("mLinkProperties: [" + mLinkProperties + "]");
555 mLinkProperties = (LinkProperties) intent.getParcelableExtra(
    [all...]
WifiStateMachine.java 279 private LinkProperties mLinkProperties;
    [all...]

Completed in 154 milliseconds