Home
last modified time | relevance | path

Searched refs:networkIds (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/hotspot2/pps/
H A DHomeSp.java456 Map<String, Long> networkIds = new HashMap<>(size);
464 networkIds.put(key, value);
466 return networkIds;
476 private static void writeHomeNetworkIds(Parcel dest, Map<String, Long> networkIds) { in writeHomeNetworkIds() argument
477 if (networkIds == null) { in writeHomeNetworkIds()
481 dest.writeInt(networkIds.size()); in writeHomeNetworkIds()
482 for (Map.Entry<String, Long> entry : networkIds.entrySet()) { in writeHomeNetworkIds()
/aosp12/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetdEventListenerService.java292 public synchronized void onTcpSocketStatsEvent(int[] networkIds, in onTcpSocketStatsEvent() argument
294 if (networkIds.length != sentPackets.length in onTcpSocketStatsEvent()
295 || networkIds.length != lostPackets.length in onTcpSocketStatsEvent()
296 || networkIds.length != rttsUs.length in onTcpSocketStatsEvent()
297 || networkIds.length != sentAckDiffsMs.length) { in onTcpSocketStatsEvent()
303 for (int i = 0; i < networkIds.length; i++) { in onTcpSocketStatsEvent()
304 int netId = networkIds[i]; in onTcpSocketStatsEvent()
/aosp12/system/netd/server/binder/android/net/metrics/
H A DINetdEventListener.aidl113 void onTcpSocketStatsEvent(in int[] networkIds, in int[] sentPackets, in onTcpSocketStatsEvent() argument
/aosp12/system/netd/server/aidl_api/netd_event_listener_interface/current/android/net/metrics/
H A DINetdEventListener.aidl25 …oneway void onTcpSocketStatsEvent(in int[] networkIds, in int[] sentPackets, in int[] lostPackets,… in onTcpSocketStatsEvent() argument
/aosp12/system/netd/server/aidl_api/netd_event_listener_interface/1/android/net/metrics/
H A DINetdEventListener.aidl24 …oneway void onTcpSocketStatsEvent(in int[] networkIds, in int[] sentPackets, in int[] lostPackets,… in onTcpSocketStatsEvent() argument
/aosp12/hardware/interfaces/wifi/supplicant/1.0/
H A DISupplicantIface.hal121 * @return networkIds List of all network Id's controlled by the supplicant.
124 generates (SupplicantStatus status, vec<SupplicantNetworkId> networkIds);
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHal.java2048 (SupplicantStatus status, ArrayList<Integer> networkIds) -> { in listNetworks()
2049 result.setResult(status, networkIds); in listNetworks()
2097 List<Integer> networkIds = listNetworks(); in loadGroups()
2098 if (networkIds == null || networkIds.isEmpty()) { in loadGroups()
2101 for (Integer networkId : networkIds) { in loadGroups()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/hotspot2/omadm/
H A DPpsMoParser.java771 Map<String, Long> networkIds = new HashMap<>(); in parseNetworkIds() local
774 networkIds.put(networkId.first, networkId.second); in parseNetworkIds()
776 return networkIds; in parseNetworkIds()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DSupplicantStaIfaceHal.java1528 iface.listNetworks((SupplicantStatus status, ArrayList<Integer> networkIds) -> { in listNetworks()
1530 networkIdList.value = networkIds; in listNetworks()