Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java913 when(mP2pIfaceHalAidlMock.startUsdBasedServiceAdvertisement(any(), any(), anyInt())) in testStartUsdBasedServiceAdvertisement()
922 assertEquals(TEST_USD_SESSION_ID, mDut.startUsdBasedServiceAdvertisement( in testStartUsdBasedServiceAdvertisement()
924 verify(mP2pIfaceHalAidlMock).startUsdBasedServiceAdvertisement(eq(usdConfig), in testStartUsdBasedServiceAdvertisement()
DWifiP2pNativeTest.java1291 when(mSupplicantP2pIfaceHalMock.startUsdBasedServiceAdvertisement( in testStartUsdBasedServiceAdvertisement()
1305 assertEquals(TEST_USD_SESSION_ID, mWifiP2pNative.startUsdBasedServiceAdvertisement( in testStartUsdBasedServiceAdvertisement()
1308 verify(mSupplicantP2pIfaceHalMock).startUsdBasedServiceAdvertisement( in testStartUsdBasedServiceAdvertisement()
DSupplicantP2pIfaceHalAidlImplTest.java2983 when(mISupplicantP2pIfaceMock.startUsdBasedServiceAdvertisement(any())) in testStartUsdBasedServiceAdvertisementSuccess()
2996 assertEquals(TEST_USD_SESSION_ID, mDut.startUsdBasedServiceAdvertisement(usdConfig, in testStartUsdBasedServiceAdvertisementSuccess()
2999 verify(mISupplicantP2pIfaceMock).startUsdBasedServiceAdvertisement( in testStartUsdBasedServiceAdvertisementSuccess()
DWifiP2pServiceImplTest.java9156 when(mWifiNative.startUsdBasedServiceAdvertisement(any(), any(), anyInt())) in verifyUsdBasedServiceAdvertisementRequest()
9166 verify(mWifiNative).startUsdBasedServiceAdvertisement(usdConfigCaptor.capture(), in verifyUsdBasedServiceAdvertisementRequest()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java642 int startUsdBasedServiceAdvertisement(WifiP2pUsdBasedServiceConfig usdServiceConfig, in startUsdBasedServiceAdvertisement() method
DSupplicantP2pIfaceHal.java1216 public int startUsdBasedServiceAdvertisement(WifiP2pUsdBasedServiceConfig usdServiceConfig, in startUsdBasedServiceAdvertisement() method in SupplicantP2pIfaceHal
1225 return mP2pIfaceHal.startUsdBasedServiceAdvertisement(usdServiceConfig, in startUsdBasedServiceAdvertisement()
DWifiP2pNative.java1154 public int startUsdBasedServiceAdvertisement(WifiP2pUsdBasedServiceConfig usdServiceConfig, in startUsdBasedServiceAdvertisement() method in WifiP2pNative
1157 return mSupplicantP2pIfaceHal.startUsdBasedServiceAdvertisement(usdServiceConfig, in startUsdBasedServiceAdvertisement()
DSupplicantP2pIfaceHalAidlImpl.java3057 public int startUsdBasedServiceAdvertisement(WifiP2pUsdBasedServiceConfig usdServiceConfig, in startUsdBasedServiceAdvertisement() method in SupplicantP2pIfaceHalAidlImpl
3081 return mISupplicantP2pIface.startUsdBasedServiceAdvertisement( in startUsdBasedServiceAdvertisement()
DSupplicantP2pIfaceHalHidlImpl.java2689 public int startUsdBasedServiceAdvertisement(WifiP2pUsdBasedServiceConfig usdServiceConfig, in startUsdBasedServiceAdvertisement() method in SupplicantP2pIfaceHalHidlImpl
DWifiP2pServiceImpl.java8208 sessionId = mWifiNative.startUsdBasedServiceAdvertisement(usdServiceConfig, in addLocalService()