Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DSoftApConfiguration.java236 private final List<MacAddress> mAllowedClientList; field in SoftApConfiguration
346 mAllowedClientList = new ArrayList<>(allowedList); in SoftApConfiguration()
373 && Objects.equals(mAllowedClientList, other.mAllowedClientList) in equals()
386 mAllowedClientList, mMacRandomizationSetting, in hashCode()
428 dest.writeTypedList(mAllowedClientList); in writeToParcel()
693 return mAllowedClientList; in getAllowedClientList()
868 private List<MacAddress> mAllowedClientList; field in SoftApConfiguration.Builder
890 mAllowedClientList = new ArrayList<>(); in Builder()
914 mAllowedClientList = new ArrayList<>(other.mAllowedClientList); in Builder()
929 for (MacAddress client : mAllowedClientList) { in build()
[all …]
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DSoftApManager.java179 private Set<MacAddress> mAllowedClientList = new HashSet<>(); field in SoftApManager
271 mAllowedClientList = new HashSet<>(mCurrentSoftApConfiguration.getAllowedClientList()); in configureInternalConfiguration()
732 && !mAllowedClientList.contains(newClient.getMacAddress())) { in checkSoftApClient()
1075 && !mAllowedClientList.contains(client.getMacAddress()))) { in updateClientConnection()