Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCandidates.java55 mCandidates.put(c.getKey(), c); in WifiCandidates()
424 private final Map<Key, Candidate> mCandidates = new ArrayMap<>(); field in WifiCandidates
490 Candidate old = mCandidates.get(key); in add()
511 mCandidates.put(key, candidate); in add()
551 return mCandidates.remove(candidate.getKey(), candidate); in remove()
558 return mCandidates.size(); in size()
566 for (Candidate candidate : mCandidates.values()) { in getGroupedCandidates()
581 return mCandidates.entrySet().stream().map(entry -> entry.getValue()) in getCandidates()
592 Collection<Candidate> candidates = new ArrayList<>(mCandidates.values()); in choose()