Home
last modified time | relevance | path

Searched refs:CLIENTID_UNSPEC (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
H A DDhcpLeaseRepositoryTest.java21 import static android.net.dhcp.DhcpLeaseRepository.CLIENTID_UNSPEC;
139 final DhcpLease lease = mRepo.getOffer(CLIENTID_UNSPEC, newMac, in requestAddresses()
222 final DhcpLease lease = mRepo.getOffer(CLIENTID_UNSPEC, macAddr, in testGetOffer_StableAddress()
237 DhcpLease lease = mRepo.getOffer(CLIENTID_UNSPEC, TEST_MAC_1, in testUpdateParams_UsesNewPrefix()
246 DhcpLease offer = mRepo.getOffer(CLIENTID_UNSPEC, TEST_MAC_1, in testGetOffer_ExistingLease()
328 final DhcpLease offer = mRepo.getOffer(CLIENTID_UNSPEC, TEST_MAC_1, in testGetOffer_StaticClientAddress()
515 final DhcpLease lease = mRepo.getOffer(CLIENTID_UNSPEC, mac, in testReleaseLease_StableOffer()
519 mRepo.releaseLease(CLIENTID_UNSPEC, mac, lease.getNetAddr()); in testReleaseLease_StableOffer()
522 final DhcpLease newLease = mRepo.getOffer(CLIENTID_UNSPEC, mac, in testReleaseLease_StableOffer()
530 final DhcpLease lease = mRepo.getOffer(CLIENTID_UNSPEC, TEST_MAC_1, in testMarkLeaseDeclined()
[all …]
/aosp12/packages/modules/NetworkStack/src/android/net/dhcp/
H A DDhcpLeaseRepository.java67 public static final byte[] CLIENTID_UNSPEC = null; field in DhcpLeaseRepository