Home
last modified time | relevance | path

Searched refs:removeDppUri (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DDppManagerTest.java164 when(mWifiNative.removeDppUri(anyString(), anyInt())) in setUp()
686 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
738 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionNotStarted()
748 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSessionIncorrectUid()
773 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionIncorrectUid()
784 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSession()
816 verify(mWifiNative).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in verifyCleanUpResources()
DSupplicantStaIfaceHalTest.java977 when(mStaIfaceHalAidlMock.removeDppUri(anyString(), anyInt())).thenReturn(true); in testRemoveDppUri()
978 assertTrue(mDut.removeDppUri(IFACE_NAME, NETWORK_ID)); in testRemoveDppUri()
979 verify(mStaIfaceHalAidlMock).removeDppUri(eq(IFACE_NAME), eq(NETWORK_ID)); in testRemoveDppUri()
DSupplicantStaIfaceHalHidlImplTest.java2387 assertFalse(mDut.removeDppUri(WLAN0_IFACE_NAME, 0)); in testDppFailsWithOldHal()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java622 boolean removeDppUri(@NonNull String ifaceName, int bootstrapId); in removeDppUri() method
DSupplicantStaIfaceHal.java2039 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHal
2045 return mStaIfaceHal.removeDppUri(ifaceName, bootstrapId); in removeDppUri()
DDppManager.java614 if (!mWifiNative.removeDppUri(mClientIfaceName, mDppRequestInfo.peerId)) { in cleanupDppResources()
DSupplicantStaIfaceHalAidlImpl.java3275 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHalAidlImpl
3283 iface.removeDppUri(bootstrapId); in removeDppUri()
DSupplicantStaIfaceHalHidlImpl.java3469 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHalHidlImpl
3494 SupplicantStatus status = staIfaceV12.removeDppUri(bootstrapId); in removeDppUri()
DWifiNative.java3185 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) {
3186 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId);