Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DDppManagerTest.java120 when(mWifiNative.removeDppUri(anyString(), anyInt())) in setUp()
561 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
611 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionNotStarted()
621 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSessionIncorrectUid()
646 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionIncorrectUid()
656 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSession()
686 verify(mWifiNative).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in verifyCleanUpResources()
DSupplicantStaIfaceHalTest.java1896 assertFalse(mDut.removeDppUri(WLAN0_IFACE_NAME, 0)); in testDppFailsWithOldHal()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DDppManager.java397 if (!mWifiNative.removeDppUri(mClientIfaceName, mDppRequestInfo.peerId)) { in cleanupDppResources()
DWifiNative.java2252 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in WifiNative
2253 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId); in removeDppUri()
DSupplicantStaIfaceHal.java3226 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHal
3251 SupplicantStatus status = staIfaceV12.removeDppUri(bootstrapId); in removeDppUri()