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.java1383 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenNoChannelUpdated()
1387 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenNoChannelUpdated()
1398 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
1405 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
1416 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenPermissionDenied()
1425 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenPermissionDenied()
1438 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenLocationModeDisabled()
1449 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenLocationModeDisabled()
1461 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesSuccess()
1468 verify(mWifiNative).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesSuccess()
[all …]
DWifiP2pNativeTest.java586 mWifiP2pNative.p2pServDiscReq(TEST_BSSID, TEST_SERVICE_DISCOVERY_QUERY)); in testP2pServDiscReq()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java735 public String p2pServDiscReq(String addr, String query) { in p2pServDiscReq() method in WifiP2pNative
DWifiP2pServiceImpl.java4227 mServiceDiscReqId = mWifiNative.p2pServDiscReq("00:00:00:00:00:00", sb.toString()); in updateSupplicantServiceRequest()