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.java159 private List<ScanResult.InformationElement> mVendorElements; field in WifiP2pDevice
390 mVendorElements = null; in setVendorElements()
393 mVendorElements = new ArrayList<>(vendorElements); in setVendorElements()
426 if (mVendorElements == null) return Collections.emptyList(); in getVendorElements()
427 return new ArrayList<>(mVendorElements); in getVendorElements()
613 sbuf.append("\n vendorElements: ").append(mVendorElements); in toString()
641 if (null != source.mVendorElements) { in WifiP2pDevice()
642 mVendorElements = new ArrayList<>(source.mVendorElements); in WifiP2pDevice()
673 dest.writeTypedList(mVendorElements); in writeToParcel()
705 device.mVendorElements = in.createTypedArrayList(
/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java216 private final @NonNull List<ScanResult.InformationElement> mVendorElements; field in SoftApConfiguration
505 mVendorElements = new ArrayList<>(vendorElements); in SoftApConfiguration()
544 && Objects.equals(mVendorElements, other.mVendorElements) in equals()
576 mVendorElements, in hashCode()
610 sbuf.append(" \n vendorElements = ").append(mVendorElements); in toString()
642 dest.writeTypedList(mVendorElements); in writeToParcel()
814 return new ArrayList<>(mVendorElements); in getVendorElementsInternal()
1335 private List<ScanResult.InformationElement> mVendorElements; field in SoftApConfiguration.Builder
1371 mVendorElements = new ArrayList<>(); in Builder()
1413 mVendorElements = new ArrayList<>(other.mVendorElements); in Builder()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java438 private final Map<String, HashSet<ScanResult.InformationElement>> mVendorElements = field in WifiP2pServiceImpl
1116 mVendorElements.remove(source.getPackageName()); in close()
8475 mVendorElements.remove(packageName); in updateVendorElements()
8486 mVendorElements.put(packageName, new HashSet<>(vendorElements)); in updateVendorElements()
8489 mVendorElements.forEach((k, v) -> aggregatedVendorElements.addAll(v)); in updateVendorElements()
8494 mVendorElements.forEach((k, v) -> { in updateVendorElements()
8498 mVendorElements.remove(packageName); in updateVendorElements()
8515 mVendorElements.forEach((k, v) -> aggregatedVendorElements.addAll(v)); in p2pFind()