Searched refs:mCommittedLeases (Results 1 – 1 of 1) sorted by relevance
124 private final ArrayMap<Inet4Address, DhcpLease> mCommittedLeases = new ArrayMap<>(); field in DhcpLeaseRepository154 if (cleanMap(mCommittedLeases)) { in updateParams()250 for (DhcpLease lease : mCommittedLeases.values()) { in findByClient()330 final DhcpLease currentLease = mCommittedLeases.getOrDefault(addr, null); in checkClientAndMakeLease()350 mCommittedLeases.put(lease.getNetAddr(), lease); in commitLease()357 mCommittedLeases.remove(address); in removeLease()368 final DhcpLease currentLease = mCommittedLeases.getOrDefault(addr, null); in releaseLease()385 new ArrayList<>(mCommittedLeases.size()); in notifyLeasesChanged()386 for (DhcpLease committedLease : mCommittedLeases.values()) { in notifyLeasesChanged()436 return new ArrayList<>(mCommittedLeases.values()); in getCommittedLeases()[all …]