Searched defs:plmnList (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DCellularNetworkTestUtil.java29 * @param plmnList The array of PLMN data
33 public static byte[] formatPLMNListIEI(byte[][] plmnList) throws IOException { argument
34 return formatPLMNListIEI(CellularNetwork.IEI_TYPE_PLMN_LIST, plmnList);
42 * @param plmnList The array of PLMN data
46 public static byte[] formatPLMNListIEI(int ieiType, byte[][] plmnList) throws IOException { argument
47 return formatPLMNListIEI(ieiType, plmnList, false);
55 * @param plmnList The array of PLMN data
60 public static byte[] formatPLMNListIEI(int ieiType, byte[][] plmnList, boolean setWrongSize) argument
65 int plmnsSize = getDataSize(plmnList);
73 stream.write((byte) plmnList
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DCellularNetwork.java67 public CellularNetwork(List<String> plmnList) { argument
68 mPlmnList = plmnList;
102 List<String> plmnList = new ArrayList<>();
104 plmnList.add(parsePlmn(payload));
107 return new CellularNetwork(plmnList);

Completed in 62 milliseconds