/frameworks/base/telephony/java/android/telephony/ |
D | PreciseDataConnectionState.java | 48 private LinkProperties mLinkProperties = null; field in PreciseDataConnectionState 64 mLinkProperties = linkProperties; in PreciseDataConnectionState() 85 mLinkProperties = (LinkProperties)in.readParcelable(null); in PreciseDataConnectionState() 151 return mLinkProperties; in getDataConnectionLinkProperties() 173 out.writeParcelable(mLinkProperties, flags); in writeToParcel() 198 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode()); in hashCode() 236 if (mLinkProperties == null) { in equals() 237 if (other.mLinkProperties != null) { in equals() 240 } else if (!mLinkProperties.equals(other.mLinkProperties)) { in equals() 268 sb.append(", Link properties: " + mLinkProperties); in toString()
|
/frameworks/base/core/java/com/android/server/net/ |
D | NetlinkTracker.java | 77 private final LinkProperties mLinkProperties; field in NetlinkTracker 86 mLinkProperties = new LinkProperties(); in NetlinkTracker() 87 mLinkProperties.setInterfaceName(mInterfaceName); in NetlinkTracker() 123 changed = mLinkProperties.addLinkAddress(address); in addressUpdated() 137 changed = mLinkProperties.removeLinkAddress(address); in addressRemoved() 151 changed = mLinkProperties.addRoute(route); in routeUpdated() 165 changed = mLinkProperties.removeRoute(route); in routeRemoved() 180 mDnsServerRepository.setDnsServersOn(mLinkProperties); in interfaceDnsServerInfo() 191 return new LinkProperties(mLinkProperties); in getLinkProperties() 199 mLinkProperties.clear(); in clearLinkProperties() [all …]
|
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/ |
D | TetherInterfaceStateMachine.java | 121 private final LinkProperties mLinkProperties; field in TetherInterfaceStateMachine 153 mLinkProperties = new LinkProperties(); in TetherInterfaceStateMachine() 179 public LinkProperties linkProperties() { return new LinkProperties(mLinkProperties); } in linkProperties() 250 mLinkProperties.addLinkAddress(linkAddr); in configureIPv4() 251 mLinkProperties.addRoute(route); in configureIPv4() 253 mLinkProperties.removeLinkAddress(linkAddr); in configureIPv4() 254 mLinkProperties.removeRoute(route); in configureIPv4() 353 for (RouteInfo route : toBeRemoved) mLinkProperties.removeRoute(route); in configureLocalIPv6Routes() 386 for (RouteInfo route : toBeAdded) mLinkProperties.addRoute(route); in configureLocalIPv6Routes() 407 mLinkProperties.removeLinkAddress(new LinkAddress(dns, RFC7421_PREFIX_LENGTH)); in configureLocalIPv6Dns() [all …]
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkDiagnostics.java | 103 private final LinkProperties mLinkProperties; field in NetworkDiagnostics 172 mLinkProperties = lp; in NetworkDiagnostics() 173 mInterfaceIndex = getInterfaceIndex(mLinkProperties.getInterfaceName()); in NetworkDiagnostics() 183 if (mLinkProperties.isReachable(TEST_DNS4)) { in NetworkDiagnostics() 184 mLinkProperties.addDnsServer(TEST_DNS4); in NetworkDiagnostics() 189 if (mLinkProperties.hasGlobalIPv6Address() || mLinkProperties.hasIPv6DefaultRoute()) { in NetworkDiagnostics() 190 mLinkProperties.addDnsServer(TEST_DNS6); in NetworkDiagnostics() 193 for (RouteInfo route : mLinkProperties.getRoutes()) { in NetworkDiagnostics() 202 for (InetAddress nameserver : mLinkProperties.getDnsServers()) { in NetworkDiagnostics() 211 mDescription = "ifaces{" + TextUtils.join(",", mLinkProperties.getAllInterfaceNames()) + "}" in NetworkDiagnostics() [all …]
|
/frameworks/base/services/net/java/android/net/ip/ |
D | IpReachabilityMonitor.java | 177 private LinkProperties mLinkProperties = new LinkProperties(); 265 mLinkProperties = new LinkProperties(lp); 268 final List<RouteInfo> routes = mLinkProperties.getRoutes(); 289 mLinkProperties.clear(); 295 final LinkProperties whatIfLp = new LinkProperties(mLinkProperties); 305 for (RouteInfo route : mLinkProperties.getRoutes()) { 318 mLinkProperties, whatIfLp);
|
D | IpClient.java | 648 private LinkProperties mLinkProperties; field in IpClient 770 mLinkProperties = new LinkProperties(); in IpClient() 771 mLinkProperties.setInterfaceName(mInterfaceName); in IpClient() 1042 mLinkProperties = new LinkProperties(); in resetLinkProperties() 1043 mLinkProperties.setInterfaceName(mInterfaceName); in resetLinkProperties() 1184 ProvisioningChange delta = compareProvisioning(mLinkProperties, newLp); in setLinkProperties() 1185 mLinkProperties = new LinkProperties(newLp); in setLinkProperties() 1254 final LinkProperties oldLp = mLinkProperties; in assembleLinkProperties() 1280 if (Objects.equals(newLp, mLinkProperties)) { in handleLinkPropertiesUpdate() 1341 mCallback.onProvisioningFailure(new LinkProperties(mLinkProperties)); in doImmediateProvisioningFailure() [all …]
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetNetworkFactory.java | 231 private LinkProperties mLinkProperties = new LinkProperties(); field in NetworkInterfaceState 309 mLinkProperties = linkProperties; in onIpLayerStarted() 315 NETWORK_TYPE, mNetworkInfo, mCapabilities, mLinkProperties, in onIpLayerStarted() 336 mLinkProperties = linkProperties; in updateLinkProperties() 380 mLinkProperties); in updateAgent() 384 mNetworkAgent.sendLinkProperties(mLinkProperties); in updateAgent() 390 mLinkProperties.clear(); in clear() 429 + "linkProperties: " + mLinkProperties in toString()
|
/frameworks/opt/net/lowpan/service/java/com/android/server/lowpan/ |
D | LowpanInterfaceTracker.java | 99 private LinkProperties mLinkProperties; field in LowpanInterfaceTracker 295 mLinkProperties = (LinkProperties) message.obj; in processMessage() 297 Log.i(TAG, "Got LinkProperties: " + mLinkProperties); in processMessage() 300 mNetworkAgent.sendLinkProperties(mLinkProperties); in processMessage() 542 mLinkProperties = new LinkProperties(); in LowpanInterfaceTracker() 543 mLinkProperties.setInterfaceName(mInterfaceName); in LowpanInterfaceTracker() 604 mLinkProperties, in bringUpNetworkAgent()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DataConnection.java | 180 private LinkProperties mLinkProperties = new LinkProperties(); field in DataConnection 299 return new LinkProperties(mLinkProperties); in getCopyLinkProperties() 327 mLinkProperties.setHttpProxy(proxy); in setLinkPropertiesHttpProxy() 364 Collection <InetAddress> addresses = mLinkProperties.getAddresses(); in isIpv4Connected() 381 Collection <InetAddress> addresses = mLinkProperties.getAddresses(); in isIpv6Connected() 398 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties); in updateLinkProperty() 411 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy()); in updateLinkProperty() 415 mLinkProperties = result.newLp; in updateLinkProperty() 426 mNetworkAgent.sendLinkProperties(mLinkProperties); in updateLinkProperty() 732 mLinkProperties = new LinkProperties(); in clearSettings() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiStateMachine.java | 297 private LinkProperties mLinkProperties; field in WifiStateMachine 809 mLinkProperties = new LinkProperties(); in WifiStateMachine() 1272 mLinkProperties.getRoutes(), packetData.dstAddress).getGateway(); in getDstMacForKeepalive() 1875 pw.println("mLinkProperties " + mLinkProperties); in dump() 2234 if (mLinkProperties != null) { in getLogRecString() 2236 sb.append(getLinkPropertiesSummary(mLinkProperties)); in getLogRecString() 2282 if (mLinkProperties != null) { in getLogRecString() 2284 sb.append(getLinkPropertiesSummary(mLinkProperties)); in getLogRecString() 2520 + " old: " + mLinkProperties + " new: " + newLp); in updateLinkProperties() 2523 mLinkProperties = newLp; in updateLinkProperties() [all …]
|