Home
last modified time | relevance | path

Searched refs:clientAddr (Results 1 – 5 of 5) sorted by relevance

/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpLeaseRepository.java134 long leaseTimeMs, @Nullable Inet4Address clientAddr, @NonNull SharedLog log, in DhcpLeaseRepository() argument
138 mClientAddr = clientAddr; in DhcpLeaseRepository()
139 updateParams(prefix, reservedAddrs, leaseTimeMs, clientAddr); in DhcpLeaseRepository()
143 long leaseTimeMs, @Nullable Inet4Address clientAddr) { in updateParams() argument
149 mNumAddresses = clientAddr != null ? 1 : 1 << (IPV4_ADDR_BITS - prefix.getPrefixLength()); in updateParams()
151 mClientAddr = clientAddr; in updateParams()
278 @NonNull Inet4Address clientAddr, @NonNull Inet4Address relayAddr, in requestLease() argument
286 final Inet4Address leaseAddr = reqAddr != null ? reqAddr : clientAddr; in requestLease()
DDhcpServingParams.java138 Inet4Address clientAddr = null; in fromParcelableObject() local
140 clientAddr = intToInet4AddressHTH(parcel.singleClientAddr); in fromParcelableObject()
151 .setSingleClientAddr(clientAddr) in fromParcelableObject()
337 public Builder setSingleClientAddr(@Nullable Inet4Address clientAddr) { in setSingleClientAddr() argument
338 this.mClientAddr = clientAddr; in setSingleClientAddr()
DDhcpReleasePacket.java32 public DhcpReleasePacket(int transId, Inet4Address serverId, Inet4Address clientAddr, in DhcpReleasePacket() argument
34 super(transId, (short)0, clientAddr, INADDR_ANY /* yourIp */, INADDR_ANY /* nextIp */, in DhcpReleasePacket()
37 mClientAddr = clientAddr; in DhcpReleasePacket()
/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
DDhcpServerTest.java406 final Inet4Address clientAddr = parseAddr("192.168.51.42"); in testChangePrefixOnDecline() local
408 clientAddr, 24 /*prefixLen*/, TEST_LEASE_EXPTIME_SECS * 1000L + TEST_CLOCK_TIME, in testChangePrefixOnDecline()
420 assertResponseSentTo(clientAddr); in testChangePrefixOnDecline()
422 assertMatchesLease(packet, serverAddr, clientAddr, null); in testChangePrefixOnDecline()
432 @NonNull Inet4Address clientAddr, @Nullable String hostname) { in assertMatchesLease() argument
436 assertEquals(clientAddr, packet.mYourIp); in assertMatchesLease()
DDhcpLeaseRepositoryTest.java116 private void initDhcpLeaseRepositoryWithOption(final Inet4Address clientAddr) { in initDhcpLeaseRepositoryWithOption() argument
123 TEST_IP_PREFIX, TEST_EXCL_SET, TEST_LEASE_TIME_MS, clientAddr, mLog, mClock); in initDhcpLeaseRepositoryWithOption()
575 private DhcpLease requestLease(@NonNull MacAddress macAddr, @NonNull Inet4Address clientAddr, in requestLease() argument
578 return mRepo.requestLease(CLIENTID_UNSPEC, macAddr, clientAddr, in requestLease()
614 @NonNull Inet4Address clientAddr) throws DhcpLeaseRepository.DhcpLeaseException { in requestLeaseRenewing() argument
616 return requestLease(macAddr, clientAddr, INETADDR_UNSPEC /* reqAddr */, HOSTNAME_NONE, in requestLeaseRenewing()