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

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DataCallResponseTest.java 27 import android.net.LinkProperties;
56 LinkProperties linkProperties = new LinkProperties();
58 mDcResponse.setLinkProperties(linkProperties, true));
59 logd(linkProperties.toString());
60 assertEquals(mDcResponse.ifname, linkProperties.getInterfaceName());
61 assertEquals(mDcResponse.addresses.length, linkProperties.getAddresses().size());
64 linkProperties.getLinkAddresses().get(i).getAddress().getHostAddress());
67 assertEquals(mDcResponse.dnses.length, linkProperties.getDnsServers().size())
    [all...]
DcTrackerTest.java 44 import android.net.LinkProperties;
465 LinkProperties linkProperties = mDct.getLinkProperties(PhoneConstants.APN_TYPE_DEFAULT);
466 assertEquals(FAKE_IFNAME, linkProperties.getInterfaceName());
467 assertEquals(1, linkProperties.getAddresses().size());
468 assertEquals(FAKE_ADDRESS, linkProperties.getAddresses().get(0).getHostAddress());
469 assertEquals(1, linkProperties.getDnsServers().size());
470 assertEquals(FAKE_DNS, linkProperties.getDnsServers().get(0).getHostAddress());
471 assertEquals(FAKE_GATEWAY, linkProperties.getRoutes().get(0).getGateway().getHostAddress());
    [all...]
  /frameworks/base/core/java/android/net/
NetworkState.java 31 public final LinkProperties linkProperties;
37 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties,
41 this.linkProperties = linkProperties;
50 linkProperties = in.readParcelable(null);
65 out.writeParcelable(linkProperties, flags);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataCallResponse.java 21 import android.net.LinkProperties;
133 public SetupResult setLinkProperties(LinkProperties linkProperties,
139 if (linkProperties == null)
140 linkProperties = new LinkProperties();
142 linkProperties.clear();
149 linkProperties.setInterfaceName(ifname);
185 linkProperties.addLinkAddress(la);
204 linkProperties.addDnsServer(ia)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ConnectivityListener.java 26 import android.net.LinkProperties;
217 final LinkProperties linkProperties = mConnectivityManager.getLinkProperties(network);
218 for (LinkAddress linkAddress : linkProperties.getLinkAddresses()) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareDataPathStateManager.java 27 import android.net.LinkProperties;
494 LinkProperties linkProperties = new LinkProperties();
517 networkInfo, networkCapabilities, linkProperties)) {
524 networkCapabilities, linkProperties, NETWORK_FACTORY_SCORE_AVAIL,
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkAgentInfo.java 22 import android.net.LinkProperties;
126 public LinkProperties linkProperties;
257 LinkProperties lp, NetworkCapabilities nc, int score, Context context, Handler handler,
263 linkProperties = lp;
469 new LinkProperties(linkProperties),
593 "lp{" + linkProperties + "} " +
  /frameworks/opt/net/ethernet/java/com/android/server/ethernet/
EthernetNetworkFactory.java 28 import android.net.LinkProperties;
108 private LinkProperties mLinkProperties;
137 mLinkProperties = new LinkProperties();
285 void onIpLayerStarted(LinkProperties linkProperties) {
291 mLinkProperties = linkProperties;
309 void onIpLayerStopped(LinkProperties linkProperties) {
316 void updateLinkProperties(LinkProperties linkProperties) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 19 import android.net.LinkProperties;
168 LinkProperties linkProperties = null;
173 linkProperties = sender.getLinkProperties(apnType);
186 linkProperties,
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
TetherInterfaceStateMachine.java 27 import android.net.LinkProperties;
115 private final LinkProperties mLinkProperties;
128 private LinkProperties mLastIPv6LinkProperties;
143 mLinkProperties = new LinkProperties();
168 public LinkProperties linkProperties() { return new LinkProperties(mLinkProperties); }
288 // LinkProperties. These have extraneous data filtered out and only the
293 private void updateUpstreamIPv6LinkProperties(LinkProperties v6only) {
463 TetherInterfaceStateMachine.this, new LinkProperties(mLinkProperties))
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java 53 import android.net.LinkProperties;
54 import android.net.LinkProperties.CompareResult;
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 524 milliseconds