Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java2362 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenNoChannelUpdated()
2368 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenNoChannelUpdated()
2379 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
2386 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
2398 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenPermissionDenied()
2411 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenPermissionDenied()
2431 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenLocationModeDisabled()
2442 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenLocationModeDisabled()
2455 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesSuccess()
2461 verify(mWifiNative).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesSuccess()
[all …]
DWifiP2pNativeTest.java879 mWifiP2pNative.p2pServDiscReq(TEST_BSSID, TEST_SERVICE_DISCOVERY_QUERY)); in testP2pServDiscReq()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java847 public String p2pServDiscReq(String addr, String query) { in p2pServDiscReq() method in WifiP2pNative
DWifiP2pServiceImpl.java7122 mServiceDiscReqId = mWifiNative.p2pServDiscReq("00:00:00:00:00:00", sb.toString()); in updateSupplicantServiceRequest()