Home
last modified time | relevance | path

Searched refs:DNS1 (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/tests/common/java/android/net/
DStaticIpConfigurationTest.java47 private static final InetAddress DNS1 = IpAddress("8.8.8.8"); field in StaticIpConfigurationTest
68 s.dnsServers.add(DNS1); in makeTestObject()
108 s.dnsServers.add(DNS1); in testHashCodeAndEquals()
126 s.ipAddress = new LinkAddress(DNS1, 32); in testHashCodeAndEquals()
170 s.dnsServers.add(DNS1); in testToLinkProperties()
171 expected.addDnsServer(DNS1); in testToLinkProperties()
224 dnsServers.add(DNS1); in testBuilder()
241 assertEquals(DNS1, s.getDnsServers().get(0)); in testBuilder()
249 s.addDnsServer(DNS1); in testAddDnsServers()
251 assertEquals(DNS1, s.getDnsServers().get(0)); in testAddDnsServers()
DLinkPropertiesTest.java69 private static final InetAddress DNS1 = address("75.208.7.1"); field in LinkPropertiesTest
143 lp.addDnsServer(DNS1); in makeTestObject()
240 source.addDnsServer(DNS1); in testEqualsSameOrder()
255 target.addDnsServer(DNS1); in testEqualsSameOrder()
269 target.addDnsServer(DNS1); in testEqualsSameOrder()
282 target.addDnsServer(DNS1); in testEqualsSameOrder()
320 target.addDnsServer(DNS1); in testEqualsSameOrder()
332 target.addDnsServer(DNS1); in testEqualsSameOrder()
349 source.addDnsServer(DNS1); in testEqualsDifferentOrder()
362 target.addDnsServer(DNS1); in testEqualsDifferentOrder()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DDns1State.java114 if (mAdvancedOptionsFlowInfo.containsPage(AdvancedOptionsFlowInfo.DNS1)) { in onCreateActions()
115 title = mAdvancedOptionsFlowInfo.get(AdvancedOptionsFlowInfo.DNS1); in onCreateActions()
137 mAdvancedOptionsFlowInfo.put(AdvancedOptionsFlowInfo.DNS1, in onGuidedActionEditedAndProceed()
DAdvancedOptionsFlowInfo.java45 public static final int DNS1 = 10; field in AdvancedOptionsFlowInfo
58 DNS1,
DIpSettingsInvalidState.java110 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.DNS1); in onGuidedActionClicked()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DIpConfigurationTest.java44 private static final InetAddress DNS1 = InetAddressUtils.parseNumericAddress("8.8.8.8"); field in IpConfigurationTest
55 dnsServers.add(DNS1); in setUp()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
DAdvancedOptionsFlowUtil.java143 String dns1 = flowInfo.get(AdvancedOptionsFlowInfo.DNS1); in processIpSettings()