Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java1213 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenNoChannelUpdated()
1217 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenNoChannelUpdated()
1228 when(mWifiNative.p2pServDiscReq(anyString(), anyString())).thenReturn("mServiceDiscReqId"); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
1235 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenChannelUpdateWrongPkgName()
1246 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenPermissionDenied()
1255 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenPermissionDenied()
1268 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesFailureWhenLocationModeDisabled()
1279 verify(mWifiNative, never()).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesFailureWhenLocationModeDisabled()
1291 when(mWifiNative.p2pServDiscReq(anyString(), anyString())) in testDiscoverServicesSuccess()
1300 verify(mWifiNative).p2pServDiscReq(anyString(), anyString()); in testDiscoverServicesSuccess()
[all …]
DWifiP2pNativeTest.java553 mWifiP2pNative.p2pServDiscReq(TEST_BSSID, TEST_SERVICE_DISCOVERY_QUERY)); in testP2pServDiscReq()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java737 public String p2pServDiscReq(String addr, String query) { in p2pServDiscReq() method in WifiP2pNative
DWifiP2pServiceImpl.java3852 mServiceDiscReqId = mWifiNative.p2pServDiscReq("00:00:00:00:00:00", sb.toString()); in updateSupplicantServiceRequest()