Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/wifi/supplicant/1.2/vts/functional/
H A Dsupplicant_sta_iface_hidl_test.cpp332 sta_iface_->removeDppUri(peer_id, [&](const SupplicantStatus& status) { in TEST_P()
394 sta_iface_->removeDppUri(peer_id, [&](const SupplicantStatus& status) { in TEST_P()
462 sta_iface_->removeDppUri(peer_id, [&](const SupplicantStatus& status) { in TEST_P()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DDppManagerTest.java158 when(mWifiNative.removeDppUri(anyString(), anyInt())) in setUp()
653 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
705 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionNotStarted()
715 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSessionIncorrectUid()
740 verify(mWifiNative, never()).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in testDppStopSessionIncorrectUid()
751 when(mWifiNative.removeDppUri(anyString(), anyInt())) in testDppStopSession()
783 verify(mWifiNative).removeDppUri(eq(TEST_INTERFACE_NAME), anyInt()); in verifyCleanUpResources()
H A DSupplicantStaIfaceHalTest.java2054 assertFalse(mDut.removeDppUri(WLAN0_IFACE_NAME, 0)); in testDppFailsWithOldHal()
/aosp12/hardware/interfaces/wifi/supplicant/1.3/vts/functional/
H A Dsupplicant_sta_iface_hidl_test.cpp475 sta_iface_->removeDppUri(peer_id, [&](const SupplicantStatus& status) { in TEST_P()
537 sta_iface_->removeDppUri(peer_id, [&](const SupplicantStatus& status) { in TEST_P()
/aosp12/hardware/interfaces/wifi/supplicant/1.2/
H A DISupplicantStaIface.hal86 removeDppUri(uint32_t id)
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DDppManager.java527 if (!mWifiNative.removeDppUri(mClientIfaceName, mDppRequestInfo.peerId)) { in cleanupDppResources()
H A DWifiNative.java2766 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) {
2767 return mSupplicantStaIfaceHal.removeDppUri(ifaceName, bootstrapId);
H A DSupplicantStaIfaceHal.java3385 public boolean removeDppUri(@NonNull String ifaceName, int bootstrapId) { in removeDppUri() method in SupplicantStaIfaceHal
3410 SupplicantStatus status = staIfaceV12.removeDppUri(bootstrapId); in removeDppUri()