Home
last modified time | relevance | path

Searched refs:getInterfaceParams (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Connectivity/Tethering/src/android/net/ip/
DIpServer.java185 public InterfaceParams getInterfaceParams(String ifName) { in getInterfaceParams() method in IpServer.Dependencies
666 mInterfaceParams = mDeps.getInterfaceParams(mIfaceName); in startIPv6()
725 upstreamIfaceParams = mDeps.getInterfaceParams(upstreamIface); in updateUpstreamIPv6LinkProperties()
1378 mDeps.getInterfaceParams(ifname); in processMessage()
/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
DIpServerTest.java212 when(mDependencies.getInterfaceParams(IFACE_NAME)).thenReturn(TEST_IFACE_PARAMS); in initStateMachine()
213 when(mDependencies.getInterfaceParams(UPSTREAM_IFACE)).thenReturn(UPSTREAM_IFACE_PARAMS); in initStateMachine()
214 when(mDependencies.getInterfaceParams(UPSTREAM_IFACE2)).thenReturn(UPSTREAM_IFACE_PARAMS2); in initStateMachine()
215 when(mDependencies.getInterfaceParams(IPSEC_IFACE)).thenReturn(IPSEC_IFACE_PARAMS); in initStateMachine()
/packages/modules/NetworkStack/tests/unit/src/android/net/ip/
DIpClientTest.java154 when(mDependencies.getInterfaceParams(any())).thenReturn(mInterfaceParams); in setUp()
166 when(mDependencies.getInterfaceParams(anyString())).thenReturn(mIfParams); in setTestInterfaceParams()
/packages/modules/NetworkStack/src/android/net/ip/
DIpClient.java547 public InterfaceParams getInterfaceParams(String ifname) { in getInterfaceParams() method in IpClient.Dependencies
1814 InterfaceParams params = mDependencies.getInterfaceParams(mInterfaceName); in maybeRestoreInterfaceMtu()
2047 mInterfaceParams = mDependencies.getInterfaceParams(mInterfaceName); in enter()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DBpfCoordinator.java283 @NonNull public InterfaceParams getInterfaceParams(String ifName) { in getInterfaceParams() method in BpfCoordinator.Dependencies
840 final InterfaceParams params = mDeps.getInterfaceParams(ifaceName); in updateUpstreamNetworkState()
/packages/modules/NetworkStack/tests/integration/src/android/net/ip/
DIpClientIntegrationTestCommon.java378 public InterfaceParams getInterfaceParams(String ifname) { in getInterfaceParams() method in IpClientIntegrationTestCommon.Dependencies
382 : super.getInterfaceParams(ifname); in getInterfaceParams()
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DBpfCoordinatorTest.java1423 doReturn(UPSTREAM_IFACE_PARAMS).when(mDeps).getInterfaceParams(UPSTREAM_IFACE); in initBpfCoordinatorForRule4()
DTetheringTest.java354 public InterfaceParams getInterfaceParams(String ifName) { in getInterfaceParams() method in TetheringTest.MockIpServerDependencies