Home
last modified time | relevance | path

Searched refs:mDadProxy (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
DIpServerTest.java175 @Mock private DadProxy mDadProxy; field in IpServerTest
202 when(mDependencies.getDadProxy(any(), any())).thenReturn(mDadProxy); in initStateMachine()
1018 InOrder inOrder = inOrder(mDadProxy); in dadProxyUpdates()
1020 inOrder.verify(mDadProxy).setUpstreamIface(UPSTREAM_IFACE_PARAMS); in dadProxyUpdates()
1024 inOrder.verify(mDadProxy).setUpstreamIface(null); in dadProxyUpdates()
1030 inOrder.verify(mDadProxy).setUpstreamIface(UPSTREAM_IFACE_PARAMS); in dadProxyUpdates()
1037 inOrder.verify(mDadProxy).setUpstreamIface(UPSTREAM_IFACE_PARAMS2); in dadProxyUpdates()
1041 inOrder.verify(mDadProxy).setUpstreamIface(null); in dadProxyUpdates()
1045 inOrder.verify(mDadProxy).setUpstreamIface(UPSTREAM_IFACE_PARAMS); in dadProxyUpdates()
1049 inOrder.verify(mDadProxy).setUpstreamIface(null); in dadProxyUpdates()
[all …]
/packages/modules/Connectivity/Tethering/src/android/net/ip/
DIpServer.java290 private DadProxy mDadProxy; field in IpServer
744 mDadProxy = mDeps.getDadProxy(getHandler(), mInterfaceParams); in startIPv6()
759 if (mDadProxy != null) { in stopIPv6()
760 mDadProxy.stop(); in stopIPv6()
761 mDadProxy = null; in stopIPv6()
824 if (mDadProxy != null) { in updateUpstreamIPv6LinkProperties()
825 mDadProxy.setUpstreamIface(upstreamIfaceParams); in updateUpstreamIPv6LinkProperties()
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringTest.java280 @Mock private DadProxy mDadProxy; field in TetheringTest
385 return mDadProxy; in getDadProxy()
1075 verify(mDadProxy, times(numOfCalls)).setUpstreamIface( in assertSetIfaceToDadProxy()
3467 mIPv6TetheringCoordinator, mDadProxy); in verifyUsbTetheringStopDueToSettingChange()