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

  /frameworks/base/core/java/android/net/
NetworkState.java 30 public final LinkProperties linkProperties;
35 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
37 this(networkInfo, linkProperties, linkCapabilities, null);
40 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
43 this.linkProperties = linkProperties;
50 linkProperties = in.readParcelable(null)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 19 import android.net.LinkProperties;
61 public LinkProperties linkProperties;
69 linkProperties = new LinkProperties();
84 sbuf.append(linkProperties.toString());
102 linkProperties = new LinkProperties(source.linkProperties);
113 dest.writeParcelable(linkProperties, flags)
    [all...]
WifiConfigStore.java 23 import android.net.LinkProperties;
452 static LinkProperties getLinkProperties(int netId) {
455 if (config != null) return new LinkProperties(config.linkProperties);
465 * to using LinkProperties
469 LinkProperties linkProperties = getLinkProperties(netId);
471 if (linkProperties != null) {
472 Iterator<LinkAddress> iter = linkProperties.getLinkAddresses().iterator();
476 for (RouteInfo route : linkProperties.getRoutes())
    [all...]
WifiConfiguration.java 19 import android.net.LinkProperties;
329 * with linkProperties */
350 * with linkProperties */
363 public LinkProperties linkProperties;
385 linkProperties = new LinkProperties();
472 sbuf.append(linkProperties.toString());
556 linkProperties = new LinkProperties(source.linkProperties)
    [all...]
WifiStateMachine.java 54 import android.net.LinkProperties;
169 private LinkProperties mLinkProperties;
563 mLinkProperties = new LinkProperties();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataCallState.java 21 import android.net.LinkProperties;
108 public SetupResult setLinkProperties(LinkProperties linkProperties,
114 if (linkProperties == null)
115 linkProperties = new LinkProperties();
117 linkProperties.clear();
124 linkProperties.setInterfaceName(ifname);
154 linkProperties.addLinkAddress(la);
173 linkProperties.addDns(ia)
    [all...]
ITelephonyRegistry.aidl 20 import android.net.LinkProperties;
37 String reason, String apn, String apnType, in LinkProperties linkProperties,
DefaultPhoneNotifier.java 20 import android.net.LinkProperties;
114 LinkProperties linkProperties = null;
119 linkProperties = sender.getLinkProperties(apnType);
131 linkProperties,
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 24 import android.net.LinkProperties;
117 private LinkProperties mLinkProperties = new LinkProperties();
208 for(InetAddress a : config.linkProperties.getAddresses()) {
386 config.linkProperties = new LinkProperties(mLinkProperties);
430 private int validateIpConfigFields(LinkProperties linkProperties) {
448 linkProperties.addLinkAddress(new LinkAddress(inetAddr, networkPrefixLength));
457 linkProperties.addRoute(new RouteInfo(gatewayAddr))
    [all...]
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 23 import android.net.LinkProperties;
100 private LinkProperties mDataConnectionLinkProperties;
386 String reason, String apn, String apnType, LinkProperties linkProperties,
419 mDataConnectionLinkProperties = linkProperties;
445 apnType, linkProperties, linkCapabilities, roaming);
603 String reason, String apn, String apnType, LinkProperties linkProperties,
616 if (linkProperties != null) {
617 intent.putExtra(Phone.DATA_LINK_PROPERTIES_KEY, linkProperties);
    [all...]
ConnectivityService.java 42 import android.net.LinkProperties;
43 import android.net.LinkProperties.CompareResult;
146 private LinkProperties mCurrentLinkProperties[];
377 mCurrentLinkProperties = new LinkProperties[ConnectivityManager.MAX_NETWORK_TYPE+1];
813 * Return LinkProperties for the active (i.e., connected) default
821 public LinkProperties getActiveLinkProperties() {
826 public LinkProperties getLinkProperties(int networkType) {
    [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 32 import android.net.LinkProperties;
121 LinkProperties mLinkProperties = null;
158 mLinkProperties = new LinkProperties();
180 config.linkProperties = mLinkProperties;
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 777 final String iface = state.linkProperties.getInterfaceName();
    [all...]
NetworkStatsService.java 759 final String iface = state.linkProperties.getInterfaceName();
    [all...]

Completed in 3046 milliseconds