Home
last modified time | relevance | path

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

/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java317 private final List<MacAddress> mAllowedClientList; field in SoftApConfiguration
497 mAllowedClientList = new ArrayList<>(allowedList); in SoftApConfiguration()
535 && Objects.equals(mAllowedClientList, other.mAllowedClientList) in equals()
569 mAllowedClientList, in hashCode()
601 sbuf.append(" \n AllowedClientList= ").append(mAllowedClientList); in toString()
635 dest.writeTypedList(mAllowedClientList); in writeToParcel()
1010 return mAllowedClientList; in getAllowedClientList()
1328 private List<MacAddress> mAllowedClientList; field in SoftApConfiguration.Builder
1360 mAllowedClientList = new ArrayList<>(); in Builder()
1404 mAllowedClientList = new ArrayList<>(other.mAllowedClientList); in Builder()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApManager.java292 private Set<MacAddress> mAllowedClientList = new HashSet<>(); field in SoftApManager
410 mAllowedClientList = new HashSet<>(mCurrentSoftApConfiguration.getAllowedClientList()); in configureInternalConfiguration()
1041 && !mAllowedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
1720 && !mAllowedClientList.contains(client.getMacAddress()))) { in updateClientConnection()