Home
last modified time | relevance | path

Searched refs:setWpsConfigMethods (Results 1 – 15 of 15) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java693 when(mP2pIfaceHalAidlMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetWpsConfigMethods()
694 assertTrue(mDut.setWpsConfigMethods(PARAMS)); in testSetWpsConfigMethods()
695 verify(mP2pIfaceHalAidlMock).setWpsConfigMethods(eq(PARAMS)); in testSetWpsConfigMethods()
DWifiP2pNativeTest.java498 when(mSupplicantP2pIfaceHalMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetConfigMethods()
500 verify(mSupplicantP2pIfaceHalMock).setWpsConfigMethods(eq(TEST_WPS_CONFIG)); in testSetConfigMethods()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java484 boolean setWpsConfigMethods(String configMethodsStr); in setWpsConfigMethods() method
DSupplicantP2pIfaceHal.java923 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHal
929 return mP2pIfaceHal.setWpsConfigMethods(configMethodsStr); in setWpsConfigMethods()
DWifiP2pNative.java361 return mSupplicantP2pIfaceHal.setWpsConfigMethods(cfg); in setConfigMethods()
DSupplicantP2pIfaceHalAidlImpl.java2071 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalAidlImpl
2085 mISupplicantP2pIface.setWpsConfigMethods(configMethodsMask); in setWpsConfigMethods()
DSupplicantP2pIfaceHalHidlImpl.java2328 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalHidlImpl
2339 result.setResult(mISupplicantP2pIface.setWpsConfigMethods(configMethodsMask)); in setWpsConfigMethods()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java570 when(mStaIfaceHalAidlMock.setWpsConfigMethods(anyString(), anyString())).thenReturn(true); in testSetWpsConfigMethods()
571 assertTrue(mDut.setWpsConfigMethods(IFACE_NAME, PARAMS)); in testSetWpsConfigMethods()
572 verify(mStaIfaceHalAidlMock).setWpsConfigMethods(eq(IFACE_NAME), eq(PARAMS)); in testSetWpsConfigMethods()
DSupplicantStaIfaceHalAidlImplTest.java841 doNothing().when(mISupplicantStaIfaceMock).setWpsConfigMethods(anyInt()); in testSetWpsConfigMethods()
846 assertTrue(mDut.setWpsConfigMethods(WLAN0_IFACE_NAME, validConfigMethodsStr)); in testSetWpsConfigMethods()
847 verify(mISupplicantStaIfaceMock).setWpsConfigMethods(eq(expectedConfigMethods)); in testSetWpsConfigMethods()
851 assertFalse(mDut.setWpsConfigMethods(WLAN0_IFACE_NAME, invalidConfigMethodsStr)); in testSetWpsConfigMethods()
DSupplicantStaIfaceHalHidlImplTest.java1011 when(mISupplicantStaIfaceMock.setWpsConfigMethods(anyShort())).thenReturn(mStatusSuccess); in testSetWpsConfigMethods()
1016 assertTrue(mDut.setWpsConfigMethods(WLAN0_IFACE_NAME, validConfigMethodsStr)); in testSetWpsConfigMethods()
1017 verify(mISupplicantStaIfaceMock).setWpsConfigMethods(eq(expectedConfigMethods)); in testSetWpsConfigMethods()
1021 assertFalse(mDut.setWpsConfigMethods(WLAN0_IFACE_NAME, invalidConfigMethodsStr)); in testSetWpsConfigMethods()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java291 boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr); in setWpsConfigMethods() method
DSupplicantStaIfaceHal.java1397 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHal
1403 return mStaIfaceHal.setWpsConfigMethods(ifaceName, configMethodsStr); in setWpsConfigMethods()
DSupplicantStaIfaceHalAidlImpl.java1355 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHalAidlImpl
1362 return setWpsConfigMethods(ifaceName, configMethodsMask); in setWpsConfigMethods()
1366 private boolean setWpsConfigMethods(@NonNull String ifaceName, int configMethods) { in setWpsConfigMethods() method in SupplicantStaIfaceHalAidlImpl
1374 iface.setWpsConfigMethods(configMethods); in setWpsConfigMethods()
DSupplicantStaIfaceHalHidlImpl.java1747 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHalHidlImpl
1754 return setWpsConfigMethods(ifaceName, configMethodsMask); in setWpsConfigMethods()
1758 private boolean setWpsConfigMethods(@NonNull String ifaceName, short configMethods) { in setWpsConfigMethods() method in SupplicantStaIfaceHalHidlImpl
1764 SupplicantStatus status = iface.setWpsConfigMethods(configMethods); in setWpsConfigMethods()
DWifiNative.java2651 return mSupplicantStaIfaceHal.setWpsConfigMethods(ifaceName, cfg);