Home
last modified time | relevance | path

Searched refs:dhcpInfo (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/net/src/android/net/cts/
DDhcpInfoTest.java40 DhcpInfo dhcpInfo = new DhcpInfo(); in testToString() local
43 assertEquals(expectedDefault, dhcpInfo.toString()); in testToString()
45 dhcpInfo.ipAddress = ipToInteger(STR_ADDR1); in testToString()
46 dhcpInfo.gateway = ipToInteger(STR_ADDR2); in testToString()
47 dhcpInfo.netmask = ipToInteger(STR_ADDR3); in testToString()
48 dhcpInfo.dns1 = ipToInteger(STR_ADDR4); in testToString()
49 dhcpInfo.dns2 = ipToInteger(STR_ADDR4); in testToString()
50 dhcpInfo.serverAddress = ipToInteger(STR_ADDR2); in testToString()
51 dhcpInfo.leaseDuration = leaseTime; in testToString()
54 assertEquals(expected, dhcpInfo.toString()); in testToString()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/net/
DMultiNetworkConnectivityTestActivity.java459 DhcpInfo dhcpInfo = mWifiManager.getDhcpInfo(); in isConnectedToExpectedWifiNetwork() local
463 && dhcpInfo != null) { in isConnectedToExpectedWifiNetwork()