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.java143 when(mWifiNative.removeDppUri(anyString(), anyInt())) in setUp()
594 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
645 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionNotStarted()
655 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSessionIncorrectUid()
680 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionIncorrectUid()
690 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSession()
720 verify(mWifiNative).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in verifyCleanUpResources()
DSupplicantStaIfaceHalTest.java1754 assertFalse(mDut.removeDppUri(WLAN0_IFACE_NAME, 0)); in testDppFailsWithOldHal()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DDppManager.java408 if (!mWifiNative.removeDppUri(mClientIfaceName, mDppRequestInfo.peerId)) { in cleanupDppResources()
DWifiNative.java2462 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) {
2463 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId);
DSupplicantStaIfaceHal.java3090 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHal
3115 SupplicantStatus status = staIfaceV12.removeDppUri(bootstrapId); in removeDppUri()