Home
last modified time | relevance | path

Searched refs:mIpNeighborMonitor (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/NetworkStack/src/android/net/ip/
H A DIpReachabilityMonitor.java184 private final IpNeighborMonitor mIpNeighborMonitor;
234 mIpNeighborMonitor = mDependencies.makeIpNeighborMonitor(h, mLog,
250 mIpNeighborMonitor.start();
254 mIpNeighborMonitor.stop();
259 if (Looper.myLooper() == mIpNeighborMonitor.getHandler().getLooper()) {
265 mIpNeighborMonitor.getHandler().post(() -> {
/aosp12/packages/modules/Connectivity/Tethering/src/android/net/ip/
H A DIpServer.java280 private final IpNeighborMonitor mIpNeighborMonitor; field in IpServer
308 mIpNeighborMonitor = mDeps.getIpNeighborMonitor(getHandler(), mLog, in IpServer()
315 if (mUsingBpfOffload && !mIpNeighborMonitor.start()) { in IpServer()
1440 mIpNeighborMonitor.stop(); in enter()
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
H A DIpServerTest.java179 @Mock private IpNeighborMonitor mIpNeighborMonitor; field in IpServerTest
226 doReturn(mIpNeighborMonitor).when(mDependencies).getIpNeighborMonitor(any(), any(), in initStateMachine()
359 .thenReturn(mIpNeighborMonitor); in startsOutAvailable()
1145 verify(mIpNeighborMonitor).stop(); in addRemoveipv6ForwardingRules()
1210 verify(mIpNeighborMonitor, never()).start(); in doesNotStartIpNeighborMonitorIfBpfOffloadDisabled()
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
H A DTetheringTest.java254 @Mock private IpNeighborMonitor mIpNeighborMonitor; field in TetheringTest
386 return mIpNeighborMonitor; in getIpNeighborMonitor()