Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java3147 mWifiNative.p2pStopFind(); in processMessageImpl()
3234 if (mWifiNative.p2pStopFind()) { in processMessageImpl()
3447 mWifiNative.p2pStopFind(); in processMessageImpl()
3471 mWifiNative.p2pStopFind(); in processMessageImpl()
3616 mWifiNative.p2pStopFind(); in processMessageImpl()
3639 mWifiNative.p2pStopFind(); in processMessageImpl()
3667 if (mWifiNative.p2pStopFind()) { in processMessageImpl()
3924 mWifiNative.p2pStopFind(); in processMessageImpl()
3948 mWifiNative.p2pStopFind(); in processMessageImpl()
4192 mWifiNative.p2pStopFind(); in processMessageImpl()
[all …]
DWifiP2pNative.java543 public boolean p2pStopFind() { in p2pStopFind() method in WifiP2pNative
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java2785 verify(mWifiNative, never()).p2pStopFind(); in testStartListenFailureWhenPermissionDenied()
2800 verify(mWifiNative).p2pStopFind(); in testStartListenFailureWhenNativeCallFailure()
2826 verify(mWifiNative).p2pStopFind(); in testStartListenSuccess()
2855 verify(mWifiNative, times(2)).p2pStopFind(); in testStartListenSuccessWithGroup()
2903 verify(mWifiNative).p2pStopFind(); in testStartListenSuccessWithExtListenParams()
2939 verify(mWifiNative).p2pStopFind(); in testStopListenFailureWhenNativeCallFailure()
2952 verify(mWifiNative).p2pStopFind(); in testStopListenSuccess()
4264 when(mWifiNative.p2pStopFind()).thenReturn(true); in testStopDiscoverySuccess()
4267 verify(mWifiNative).p2pStopFind(); in testStopDiscoverySuccess()
4280 when(mWifiNative.p2pStopFind()).thenReturn(false); in testStopDiscoveryFailureWhenNativeCallFailure()
[all …]
DWifiP2pNativeTest.java622 assertTrue(mWifiP2pNative.p2pStopFind()); in testP2pStopFind()