Home
last modified time | relevance | path

Searched refs:mVendorElements (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/p2p/
DWifiP2pDevice.java158 private List<ScanResult.InformationElement> mVendorElements; field in WifiP2pDevice
384 mVendorElements = null; in setVendorElements()
387 mVendorElements = new ArrayList<>(vendorElements); in setVendorElements()
420 if (mVendorElements == null) return Collections.emptyList(); in getVendorElements()
421 return new ArrayList<>(mVendorElements); in getVendorElements()
503 sbuf.append("\n vendorElements: ").append(mVendorElements); in toString()
530 if (null != source.mVendorElements) { in WifiP2pDevice()
531 mVendorElements = new ArrayList<>(source.mVendorElements); in WifiP2pDevice()
561 dest.writeTypedList(mVendorElements); in writeToParcel()
591 device.mVendorElements = in.createTypedArrayList(
/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java218 private final @NonNull List<ScanResult.InformationElement> mVendorElements; field in SoftApConfiguration
501 mVendorElements = new ArrayList<>(vendorElements); in SoftApConfiguration()
539 && Objects.equals(mVendorElements, other.mVendorElements) in equals()
570 mVendorElements, in hashCode()
603 sbuf.append(" \n vendorElements = ").append(mVendorElements); in toString()
634 dest.writeTypedList(mVendorElements); in writeToParcel()
804 return new ArrayList<>(mVendorElements); in getVendorElementsInternal()
1308 private List<ScanResult.InformationElement> mVendorElements; field in SoftApConfiguration.Builder
1343 mVendorElements = new ArrayList<>(); in Builder()
1381 mVendorElements = new ArrayList<>(other.mVendorElements); in Builder()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java429 private final Map<String, HashSet<ScanResult.InformationElement>> mVendorElements = field in WifiP2pServiceImpl
1054 mVendorElements.remove(source.getPackageName()); in close()
7441 mVendorElements.remove(packageName); in updateVendorElements()
7452 mVendorElements.put(packageName, new HashSet<>(vendorElements)); in updateVendorElements()
7455 mVendorElements.forEach((k, v) -> aggregatedVendorElements.addAll(v)); in updateVendorElements()
7460 mVendorElements.forEach((k, v) -> { in updateVendorElements()
7464 mVendorElements.remove(packageName); in updateVendorElements()
7481 mVendorElements.forEach((k, v) -> aggregatedVendorElements.addAll(v)); in p2pFind()