Home
last modified time | relevance | path

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

/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java314 private final List<MacAddress> mBlockedClientList; field in SoftApConfiguration
492 mBlockedClientList = new ArrayList<>(blockedList); in SoftApConfiguration()
529 && Objects.equals(mBlockedClientList, other.mBlockedClientList) in equals()
562 mBlockedClientList, in hashCode()
593 sbuf.append(" \n BlockedClientList = ").append(mBlockedClientList); in toString()
626 dest.writeTypedList(mBlockedClientList); in writeToParcel()
987 return mBlockedClientList; in getBlockedClientList()
1300 private List<MacAddress> mBlockedClientList; field in SoftApConfiguration.Builder
1331 mBlockedClientList = new ArrayList<>(); in Builder()
1371 mBlockedClientList = new ArrayList<>(other.mBlockedClientList); in Builder()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApManager.java270 private Set<MacAddress> mBlockedClientList = new HashSet<>(); field in SoftApManager
384 mBlockedClientList = new HashSet<>(mCurrentSoftApConfiguration.getBlockedClientList()); in configureInternalConfiguration()
967 if (mBlockedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
1627 if (mBlockedClientList.contains(client.getMacAddress()) in updateClientConnection()