Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java712 public boolean p2pServiceDel(WifiP2pServiceInfo servInfo) { in p2pServiceDel() method in WifiP2pNative
DWifiP2pServiceImpl.java3987 mWifiNative.p2pServiceDel(servInfo); in removeLocalService()
4003 mWifiNative.p2pServiceDel(servInfo); in clearLocalServices()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java3460 verify(mWifiNative).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testRemoveLocalServiceSuccess()
3473 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testRemoveLocalServiceSuccessWithoutClientInfo()
3487 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testRemoveLocalServiceSuccessWithNullServiceInfo()
3499 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testRemoveLocalServiceFailureWhenP2pDisabled()
3516 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testRemoveLocalServiceFailureWhenP2pUnsupported()
3533 verify(mWifiNative, atLeastOnce()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testClearLocalServiceSuccess()
3546 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testClearLocalServiceSuccessWithoutClientInfo()
3558 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testClearLocalServiceFailureWhenP2pDisabled()
3575 verify(mWifiNative, never()).p2pServiceDel(any(WifiP2pServiceInfo.class)); in testClearLocalServiceFailureWhenP2pUnsupported()
DWifiP2pNativeTest.java531 assertTrue(mWifiP2pNative.p2pServiceDel(info)); in testP2pServiceDel()