HomeSort by relevance Sort by last modified time
    Searched refs:linkProperties (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/java/android/net/
NetworkState.java 30 public final LinkProperties linkProperties;
36 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
38 this(networkInfo, linkProperties, linkCapabilities, null, null);
41 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
44 this.linkProperties = linkProperties;
52 linkProperties = in.readParcelable(null)
    [all...]
DhcpResults.java 33 * TODO - remove when DhcpInfo is deprecated. Move the remaining api to LinkProperties.
39 public final LinkProperties linkProperties;
51 linkProperties = new LinkProperties();
57 linkProperties = new LinkProperties(source.linkProperties);
62 linkProperties = new LinkProperties();
    [all...]
EthernetDataTracker.java 105 mLinkProperties = new LinkProperties();
173 mLinkProperties = dhcpResults.linkProperties;
363 * Fetch LinkProperties for the network
365 public synchronized LinkProperties getLinkProperties() {
366 return new LinkProperties(mLinkProperties);
413 public void addStackedLink(LinkProperties link) {
418 public void removeStackedLink(LinkProperties link) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataCallResponse.java 21 import android.net.LinkProperties;
107 public SetupResult setLinkProperties(LinkProperties linkProperties,
113 if (linkProperties == null)
114 linkProperties = new LinkProperties();
116 linkProperties.clear();
123 linkProperties.setInterfaceName(ifname);
153 linkProperties.addLinkAddress(la);
172 linkProperties.addDns(ia)
    [all...]
DcTracker.java 32 import android.net.LinkProperties;
290 public LinkProperties getLinkProperties(String apnType) {
299 if (DBG) log("return new LinkProperties");
300 return new LinkProperties();
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothTetheringDataTracker.java 27 import android.net.LinkProperties;
82 mLinkProperties = new LinkProperties();
247 * Fetch LinkProperties for the network
249 public LinkProperties getLinkProperties() {
251 return new LinkProperties(mLinkProperties);
306 void startReverseTether(final LinkProperties linkProperties) {
307 if (linkProperties == null || TextUtils.isEmpty(linkProperties.getInterfaceName())) {
316 mLinkProperties = linkProperties;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 22 import android.net.LinkProperties;
561 * @return LinkProperties for the given network id
563 LinkProperties getLinkProperties(int netId) {
565 if (config != null) return new LinkProperties(config.linkProperties);
572 void setLinkProperties(int netId, LinkProperties linkProperties) {
576 if(config.linkProperties != null) {
577 linkProperties.setHttpProxy(config.linkProperties.getHttpProxy())
    [all...]
WifiConfiguration.java 19 import android.net.LinkProperties;
290 * with linkProperties */
311 * with linkProperties */
327 public LinkProperties linkProperties;
348 linkProperties = new LinkProperties();
455 sbuf.append(linkProperties.toString());
606 linkProperties = new LinkProperties(source.linkProperties)
    [all...]
WifiStateMachine.java 50 import android.net.LinkProperties;
211 private LinkProperties mLinkProperties;
218 private final LinkProperties mNetlinkLinkProperties;
664 mLinkProperties = new LinkProperties();
665 mNetlinkLinkProperties = new LinkProperties();
    [all...]
  /frameworks/base/core/java/android/net/arp/
ArpPeer.java 20 import android.net.LinkProperties;
133 public static boolean doArp(String myMacAddress, LinkProperties linkProperties,
135 String interfaceName = linkProperties.getInterfaceName();
140 for (LinkAddress la : linkProperties.getLinkAddresses()) {
145 for (RouteInfo route : linkProperties.getRoutes()) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 20 import android.net.LinkProperties;
38 String reason, String apn, String apnType, in LinkProperties linkProperties,
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 24 import android.net.LinkProperties;
135 private LinkProperties mLinkProperties = new LinkProperties();
234 for(InetAddress a : config.linkProperties.getAddresses()) {
247 config.linkProperties.getHttpProxy().getPacFileUrl());
435 config.linkProperties = new LinkProperties(mLinkProperties);
479 private int validateIpConfigFields(LinkProperties linkProperties) {
498 linkProperties.addLinkAddress(new LinkAddress(inetAddr, networkPrefixLength))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 20 import android.net.LinkProperties;
121 LinkProperties linkProperties = null;
126 linkProperties = sender.getLinkProperties(apnType);
138 linkProperties,
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 26 import android.net.LinkProperties;
116 private LinkProperties mDataConnectionLinkProperties;
478 String reason, String apn, String apnType, LinkProperties linkProperties,
512 mDataConnectionLinkProperties = linkProperties;
538 apnType, linkProperties, linkCapabilities, roaming);
703 String reason, String apn, String apnType, LinkProperties linkProperties,
717 if (linkProperties != null) {
718 intent.putExtra(PhoneConstants.DATA_LINK_PROPERTIES_KEY, linkProperties);
    [all...]
ConnectivityService.java 60 import android.net.LinkProperties;
61 import android.net.LinkProperties.CompareResult;
242 private LinkProperties mCurrentLinkProperties[];
503 mCurrentLinkProperties = new LinkProperties[ConnectivityManager.MAX_NETWORK_TYPE+1];
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 35 import android.net.LinkProperties;
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 33 import android.net.LinkProperties;
119 LinkProperties mLinkProperties = null;
156 mLinkProperties = new LinkProperties();
178 config.linkProperties = mLinkProperties;
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java     [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java 86 import android.net.LinkProperties;
    [all...]
NetworkPolicyManagerService.java     [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkStatsServiceTest.java 57 import android.net.LinkProperties;
    [all...]

Completed in 242 milliseconds