Home
last modified time | relevance | path

Searched refs:stopUsdBasedServiceDiscovery (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java901 doNothing().when(mP2pIfaceHalAidlMock).stopUsdBasedServiceDiscovery(anyInt()); in testStopUsdBasedServiceDiscovery()
902 mDut.stopUsdBasedServiceDiscovery(TEST_USD_SESSION_ID); in testStopUsdBasedServiceDiscovery()
903 verify(mP2pIfaceHalAidlMock).stopUsdBasedServiceDiscovery(eq(TEST_USD_SESSION_ID)); in testStopUsdBasedServiceDiscovery()
DWifiP2pNativeTest.java1280 doNothing().when(mSupplicantP2pIfaceHalMock).stopUsdBasedServiceDiscovery(anyInt()); in testStopUsdBasedServiceDiscovery()
1281 mWifiP2pNative.stopUsdBasedServiceDiscovery(TEST_USD_SESSION_ID); in testStopUsdBasedServiceDiscovery()
1282 verify(mSupplicantP2pIfaceHalMock).stopUsdBasedServiceDiscovery(eq(TEST_USD_SESSION_ID)); in testStopUsdBasedServiceDiscovery()
DSupplicantP2pIfaceHalAidlImplTest.java2964 doNothing().when(mISupplicantP2pIfaceMock).stopUsdBasedServiceDiscovery(anyInt()); in testStopUsdBasedServiceDiscoverySuccess()
2968 mDut.stopUsdBasedServiceDiscovery(TEST_USD_SESSION_ID); in testStopUsdBasedServiceDiscoverySuccess()
2969 verify(mISupplicantP2pIfaceMock).stopUsdBasedServiceDiscovery(eq(TEST_USD_SESSION_ID)); in testStopUsdBasedServiceDiscoverySuccess()
DWifiP2pServiceImplTest.java9136 verify(mWifiNative).stopUsdBasedServiceDiscovery(anyInt()); in testRemoveUsdBasedServiceDiscoveryRequest()
9151 verify(mWifiNative).stopUsdBasedServiceDiscovery(anyInt()); in testClearUsdBasedServiceDiscoveryRequests()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java633 void stopUsdBasedServiceDiscovery(int sessionId); in stopUsdBasedServiceDiscovery() method
DSupplicantP2pIfaceHal.java1198 public void stopUsdBasedServiceDiscovery(int sessionId) { in stopUsdBasedServiceDiscovery() method in SupplicantP2pIfaceHal
1205 mP2pIfaceHal.stopUsdBasedServiceDiscovery(sessionId); in stopUsdBasedServiceDiscovery()
DWifiP2pNative.java1143 public void stopUsdBasedServiceDiscovery(int sessionId) { in stopUsdBasedServiceDiscovery() method in WifiP2pNative
1144 mSupplicantP2pIfaceHal.stopUsdBasedServiceDiscovery(sessionId); in stopUsdBasedServiceDiscovery()
DSupplicantP2pIfaceHalAidlImpl.java3030 public void stopUsdBasedServiceDiscovery(int sessionId) { in stopUsdBasedServiceDiscovery() method in SupplicantP2pIfaceHalAidlImpl
3040 mISupplicantP2pIface.stopUsdBasedServiceDiscovery(sessionId); in stopUsdBasedServiceDiscovery()
DSupplicantP2pIfaceHalHidlImpl.java2678 public void stopUsdBasedServiceDiscovery(int sessionId) { in stopUsdBasedServiceDiscovery() method in SupplicantP2pIfaceHalHidlImpl
DWifiP2pServiceImpl.java7964 mWifiNative.stopUsdBasedServiceDiscovery(mServiceDiscoveryInfo.getSessionIdInt()); in processUsdFrameBasedServiceDiscoveryRequestMessage()
8111 mWifiNative.stopUsdBasedServiceDiscovery(sessionId); in removeServiceRequest()
8160 mWifiNative.stopUsdBasedServiceDiscovery(sessionId); in clearServiceRequests()