HomeSort by relevance Sort by last modified time
    Searched defs:CellularNetwork (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
CellularNetworkTest.java 33 * Unit tests for {@link com.android.server.wifi.hotspot2.anqp.CellularNetwork}.
49 CellularNetwork.parse(ByteBuffer.allocate(0));
61 assertNull(CellularNetwork.parse(ByteBuffer.wrap(testData)));
74 CellularNetwork.parse(ByteBuffer.wrap(testData, 0, testData.length - 1));
88 CellularNetwork.IEI_TYPE_PLMN_LIST, plmnsData, true);
89 CellularNetwork.parse(ByteBuffer.wrap(testData));
103 // Setup the expected CellularNetwork.
107 CellularNetwork expected = new CellularNetwork(plmnList);
109 assertEquals(expected, CellularNetwork.parse(ByteBuffer.wrap(testData)))
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
CellularNetwork.java 37 public class CellularNetwork {
38 private static final String TAG = "CellularNetwork";
67 public CellularNetwork(List<String> plmnList) {
72 * Parse a CellularNetwork from the given buffer.
75 * @return {@link CellularNetwork}
79 public static CellularNetwork parse(ByteBuffer payload) throws ProtocolException {
107 return new CellularNetwork(plmnList);
119 if (!(thatObject instanceof CellularNetwork)) {
122 CellularNetwork that = (CellularNetwork) thatObject
    [all...]

Completed in 1211 milliseconds