Home
last modified time | relevance | path

Searched refs:GATEWAY (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Connectivity/tests/common/java/android/net/
DStaticIpConfigurationTest.java45 private static final InetAddress GATEWAY = IpAddress("192.0.2.1"); field in StaticIpConfigurationTest
67 s.gateway = GATEWAY; in makeTestObject()
105 s.gateway = GATEWAY; in testHashCodeAndEquals()
156 s.gateway = GATEWAY; in testToLinkProperties()
157 RouteInfo defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), GATEWAY, IFACE); in testToLinkProperties()
228 .setGateway(GATEWAY) in testBuilder()
236 assertEquals(GATEWAY, s.getGateway()); in testBuilder()
267 assertEquals(new RouteInfo((IpPrefix) null, GATEWAY, IFACE), routeInfoList.get(1)); in testGetRoutes()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DGatewayState.java115 if (mAdvancedOptionsFlowInfo.containsPage(AdvancedOptionsFlowInfo.GATEWAY)) { in onCreateActions()
116 title = mAdvancedOptionsFlowInfo.get(AdvancedOptionsFlowInfo.GATEWAY); in onCreateActions()
138 mAdvancedOptionsFlowInfo.put(AdvancedOptionsFlowInfo.GATEWAY, in onGuidedActionEditedAndProceed()
DAdvancedOptionsFlowInfo.java44 public static final int GATEWAY = 9; field in AdvancedOptionsFlowInfo
57 GATEWAY,
DIpSettingsInvalidState.java109 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.GATEWAY); in onGuidedActionClicked()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DIpConfigurationTest.java43 private static final InetAddress GATEWAY = InetAddressUtils.parseNumericAddress("192.0.2.1"); field in IpConfigurationTest
59 .setGateway(GATEWAY) in setUp()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
DAdvancedOptionsFlowUtil.java133 String gateway = flowInfo.get(AdvancedOptionsFlowInfo.GATEWAY); in processIpSettings()