Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/
DSoftApConfiguration.java202 private final List<MacAddress> mBlockedClientList; field in SoftApConfiguration
267 mBlockedClientList = new ArrayList<>(blockedList); in SoftApConfiguration()
291 && Objects.equals(mBlockedClientList, other.mBlockedClientList) in equals()
299 mShutdownTimeoutMillis, mClientControlByUser, mBlockedClientList, in hashCode()
318 sbuf.append(" \n BlockedClientList=").append(mBlockedClientList); in toString()
336 dest.writeTypedList(mBlockedClientList); in writeToParcel()
496 return mBlockedClientList; in getBlockedClientList()
585 private List<MacAddress> mBlockedClientList; field in SoftApConfiguration.Builder
603 mBlockedClientList = new ArrayList<>(); in Builder()
624 mBlockedClientList = new ArrayList<>(other.mBlockedClientList); in Builder()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSoftApManager.java130 private Set<MacAddress> mBlockedClientList = new HashSet<>(); field in SoftApManager
201 mBlockedClientList = new HashSet<>(softApConfig.getBlockedClientList()); in SoftApManager()
478 if (mBlockedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
625 mBlockedClientList = new HashSet<>(newConfig.getBlockedClientList()); in processMessage()
684 if (mBlockedClientList.contains(client.getMacAddress()) in updateClientConnection()
981 mBlockedClientList = new HashSet<>(newConfig.getBlockedClientList()); in processMessage()