Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/
DSoftApConfiguration.java207 private final List<MacAddress> mAllowedClientList; field in SoftApConfiguration
268 mAllowedClientList = new ArrayList<>(allowedList); in SoftApConfiguration()
292 && Objects.equals(mAllowedClientList, other.mAllowedClientList); in equals()
300 mAllowedClientList); in hashCode()
319 sbuf.append(" \n AllowedClientList=").append(mAllowedClientList); in toString()
337 dest.writeTypedList(mAllowedClientList); in writeToParcel()
508 return mAllowedClientList; in getAllowedClientList()
586 private List<MacAddress> mAllowedClientList; field in SoftApConfiguration.Builder
604 mAllowedClientList = new ArrayList<>(); in Builder()
625 mAllowedClientList = new ArrayList<>(other.mAllowedClientList); in Builder()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSoftApManager.java133 private Set<MacAddress> mAllowedClientList = new HashSet<>(); field in SoftApManager
202 mAllowedClientList = new HashSet<>(softApConfig.getAllowedClientList()); in SoftApManager()
486 && !mAllowedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
626 mAllowedClientList = new HashSet<>(newConfig.getAllowedClientList()); in processMessage()
686 && !mAllowedClientList.contains(client.getMacAddress()))) { in updateClientConnection()
982 mAllowedClientList = new HashSet<>(newConfig.getAllowedClientList()); in processMessage()