Home
last modified time | relevance | path

Searched refs:newAddress (Results 1 – 11 of 11) sorted by relevance

/aosp12/packages/modules/Connectivity/core/java/android/net/
H A DLinkProperties.java691 for (LinkAddress newAddress : target.getLinkAddresses()) { in compareAddresses()
692 if (! result.removed.remove(newAddress)) { in compareAddresses()
693 result.added.add(newAddress); in compareAddresses()
721 for (InetAddress newAddress : target.getDnsServers()) { in compareDnses()
722 if (! result.removed.remove(newAddress)) { in compareDnses()
723 result.added.add(newAddress); in compareDnses()
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DPrivateAddressCoordinator.java186 final LinkAddress newAddress = chooseDownstreamAddress(prefixRange); in requestDownstreamAddress() local
187 if (newAddress != null) { in requestDownstreamAddress()
189 mCachedAddresses.put(ipServer.interfaceType(), newAddress); in requestDownstreamAddress() local
190 return newAddress; in requestDownstreamAddress()
/aosp12/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
H A DContact.java368 PostalAddress newAddress = PostalAddress.fromCursor(cursor); in addPostalAddress() local
370 if (!mPostalAddresses.contains(newAddress)) { in addPostalAddress()
371 mPostalAddresses.add(newAddress); in addPostalAddress()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java1266 public void setAddress(String newAddress, int numberPresentation) { in setAddress() argument
1267 Rlog.i(TAG, "setAddress = " + newAddress); in setAddress()
1268 mAddress = newAddress; in setAddress()
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
H A DPrivateAddressCoordinatorTest.java122 final LinkAddress newAddress = requestDownstreamAddress(mHotspotIpServer, in testRequestDownstreamAddressWithoutUsingLastAddress() local
124 final IpPrefix testDupRequest = asIpPrefix(newAddress); in testRequestDownstreamAddressWithoutUsingLastAddress()
/aosp12/frameworks/base/telecomm/java/android/telecom/
H A DConference.java72 public void onAddressChanged(Conference c, Uri newAddress, int presentation) {} in onAddressChanged() argument
H A DConnection.java1229 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} in onAddressChanged() argument
H A DConnectionService.java1661 public void onAddressChanged(Conference c, Uri newAddress, int presentation) {
1664 mAdapter.setAddress(id, newAddress, presentation);
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DBluetoothManagerService.java423 String newAddress = intent.getStringExtra(BluetoothAdapter.EXTRA_BLUETOOTH_ADDRESS);
424 if (newAddress != null) {
426 Slog.d(TAG, "Bluetooth Adapter address changed to " + newAddress);
428 storeNameAndAddress(null, newAddress);
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
H A DIpServerTest.java734 final LinkAddress newAddress = new LinkAddress("192.168.100.125/24"); in testOnNewPrefixRequest() local
736 newAddress); in testOnNewPrefixRequest()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DClientModeImpl.java2980 int newAddress = Inet4AddressUtils.inet4AddressToIntHTL(addr);
2981 if (previousAddress != newAddress) {