Searched refs:stopDppResponder (Results 1 – 8 of 8) sorted by relevance
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaIfaceHalTest.java | 1065 when(mStaIfaceHalAidlMock.stopDppResponder(anyString(), anyInt())).thenReturn(true); in testStopDppResponder() 1066 assertTrue(mDut.stopDppResponder(IFACE_NAME, NETWORK_ID)); in testStopDppResponder() 1067 verify(mStaIfaceHalAidlMock).stopDppResponder(eq(IFACE_NAME), eq(NETWORK_ID)); in testStopDppResponder()
|
D | DppManagerTest.java | 1273 verify(mWifiNative).stopDppResponder(eq(TEST_INTERFACE_NAME), eq(TEST_BOOTSTRAP_ID)); in testDppStopSessionInResponderMode()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ISupplicantStaIfaceHal.java | 674 boolean stopDppResponder(@NonNull String ifaceName, int ownBootstrapId); in stopDppResponder() method
|
D | SupplicantStaIfaceHal.java | 2143 public boolean stopDppResponder(@NonNull String ifaceName, int ownBootstrapId) { in stopDppResponder() method in SupplicantStaIfaceHal 2149 return mStaIfaceHal.stopDppResponder(ifaceName, ownBootstrapId); in stopDppResponder()
|
D | DppManager.java | 618 if (!mWifiNative.stopDppResponder(mClientIfaceName, mDppRequestInfo.bootstrapId)) { in cleanupDppResources()
|
D | SupplicantStaIfaceHalAidlImpl.java | 3442 public boolean stopDppResponder(@NonNull String ifaceName, int ownBootstrapId) { in stopDppResponder() method in SupplicantStaIfaceHalAidlImpl 3450 iface.stopDppResponder(ownBootstrapId); in stopDppResponder()
|
D | SupplicantStaIfaceHalHidlImpl.java | 3727 public boolean stopDppResponder(@NonNull String ifaceName, int ownBootstrapId) { in stopDppResponder() method in SupplicantStaIfaceHalHidlImpl 3748 staIfaceV14.stopDppResponder(ownBootstrapId); in stopDppResponder()
|
D | WifiNative.java | 3333 public boolean stopDppResponder(@NonNull String ifaceName, int ownBootstrapId) { 3334 return mSupplicantStaIfaceHal.stopDppResponder(ifaceName, ownBootstrapId);
|