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

  /frameworks/base/telephony/java/android/telephony/
PreciseDataConnectionState.java 48 private LinkProperties mLinkProperties = null;
64 mLinkProperties = linkProperties;
85 mLinkProperties = (LinkProperties)in.readParcelable(null);
151 return mLinkProperties;
173 out.writeParcelable(mLinkProperties, flags);
198 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode());
236 if (mLinkProperties == null) {
237 if (other.mLinkProperties != null) {
240 } else if (!mLinkProperties.equals(other.mLinkProperties))
    [all...]
  /frameworks/base/core/java/com/android/server/net/
NetlinkTracker.java 59 * - All accesses to mLinkProperties must be synchronized(this). All the other
77 private final LinkProperties mLinkProperties;
86 mLinkProperties = new LinkProperties();
87 mLinkProperties.setInterfaceName(mInterfaceName);
123 changed = mLinkProperties.addLinkAddress(address);
137 changed = mLinkProperties.removeLinkAddress(address);
151 changed = mLinkProperties.addRoute(route);
165 changed = mLinkProperties.removeRoute(route);
180 mDnsServerRepository.setDnsServersOn(mLinkProperties);
191 return new LinkProperties(mLinkProperties);
    [all...]
  /frameworks/opt/net/ethernet/java/com/android/server/ethernet/
EthernetNetworkFactory.java 104 private LinkProperties mLinkProperties;
110 mLinkProperties = new LinkProperties();
239 mLinkProperties = new LinkProperties();
269 mLinkProperties);
273 mNetworkAgent.sendLinkProperties(mLinkProperties);
311 mLinkProperties = newLp;
360 mLinkProperties = linkProperties;
366 NETWORK_TYPE, mNetworkInfo, mNetworkCapabilities, mLinkProperties,
373 mLinkProperties.clear();
475 mLinkProperties = new LinkProperties()
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkDiagnostics.java 101 private final LinkProperties mLinkProperties;
170 mLinkProperties = lp;
171 mInterfaceIndex = getInterfaceIndex(mLinkProperties.getInterfaceName());
177 // We are free to modify mLinkProperties with impunity because ConnectivityService passes us
181 if (mLinkProperties.isReachable(TEST_DNS4)) {
182 mLinkProperties.addDnsServer(TEST_DNS4);
184 // TODO: we could use mLinkProperties.isReachable(TEST_DNS6) here, because we won't set any
187 if (mLinkProperties.hasGlobalIPv6Address() || mLinkProperties.hasIPv6DefaultRoute()) {
188 mLinkProperties.addDnsServer(TEST_DNS6)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/net/
ConnectivityScreenOffTestActivity.java 300 LinkProperties mLinkProperties;
307 mLinkProperties = null;
378 mState.mLinkProperties = newLp;
431 if (localState.mLinkProperties == null) {
433 mState.mLinkProperties = mCM.getLinkProperties(mState.mNetwork);
537 localState.mLinkProperties = mState.mLinkProperties;
593 for (LinkAddress linkAddr : localState.mLinkProperties.getLinkAddresses()) {
  /frameworks/base/services/net/java/android/net/ip/
IpReachabilityMonitor.java 155 private LinkProperties mLinkProperties = new LinkProperties();
304 mLinkProperties = new LinkProperties(lp);
307 final List<RouteInfo> routes = mLinkProperties.getRoutes();
331 mLinkProperties.clear();
342 LinkProperties whatIfLp = new LinkProperties(mLinkProperties);
350 for (RouteInfo route : mLinkProperties.getRoutes()) {
358 delta = LinkProperties.compareProvisioning(mLinkProperties, whatIfLp);
IpManager.java 402 private LinkProperties mLinkProperties;
631 mLinkProperties = new LinkProperties();
632 mLinkProperties.setInterfaceName(mInterfaceName);
743 ProvisioningChange delta = compareProvisioning(mLinkProperties, newLp);
744 mLinkProperties = new LinkProperties(newLp);
756 return Objects.equals(newLp, mLinkProperties);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnection.java 154 private LinkProperties mLinkProperties = new LinkProperties();
260 return new LinkProperties(mLinkProperties);
276 mLinkProperties.setHttpProxy(proxy);
291 Collection <InetAddress> addresses = mLinkProperties.getAddresses();
308 Collection <InetAddress> addresses = mLinkProperties.getAddresses();
324 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties);
338 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy());
342 mLinkProperties = result.newLp;
353 mNetworkAgent.sendLinkProperties(mLinkProperties);
674 mLinkProperties = new LinkProperties()
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiStateMachine.java 349 private LinkProperties mLinkProperties;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 250 milliseconds