Searched refs:mUpstreamPrefixMap (Results 1 – 1 of 1) sorted by relevance
73 private final ArrayMap<Network, List<IpPrefix>> mUpstreamPrefixMap; field in PrivateAddressCoordinator86 mUpstreamPrefixMap = new ArrayMap<>(); in PrivateAddressCoordinator()122 mUpstreamPrefixMap.put(ns.network, ipv4Prefixes); in updateUpstreamPrefix()152 mUpstreamPrefixMap.remove(network); in removeUpstreamPrefix()160 if (mUpstreamPrefixMap.isEmpty()) return; in maybeRemoveDeprecatedUpstreams()163 final Set<Network> toBeRemoved = new HashSet<>(mUpstreamPrefixMap.keySet()); in maybeRemoveDeprecatedUpstreams()166 mUpstreamPrefixMap.removeAll(toBeRemoved); in maybeRemoveDeprecatedUpstreams()369 mUpstreamPrefixMap.clear(); in clearUpstreamPrefixes()373 for (int i = 0; i < mUpstreamPrefixMap.size(); i++) { in getConflictWithUpstream()374 final List<IpPrefix> list = mUpstreamPrefixMap.valueAt(i); in getConflictWithUpstream()[all …]