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.java697 when(mP2pIfaceHalAidlMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetWpsConfigMethods()
698 assertTrue(mDut.setWpsConfigMethods(PARAMS)); in testSetWpsConfigMethods()
699 verify(mP2pIfaceHalAidlMock).setWpsConfigMethods(eq(PARAMS)); in testSetWpsConfigMethods()
DWifiP2pNativeTest.java513 when(mSupplicantP2pIfaceHalMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetConfigMethods()
515 verify(mSupplicantP2pIfaceHalMock).setWpsConfigMethods(eq(TEST_WPS_CONFIG)); in testSetConfigMethods()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java504 boolean setWpsConfigMethods(String configMethodsStr); in setWpsConfigMethods() method
DSupplicantP2pIfaceHal.java935 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHal
941 return mP2pIfaceHal.setWpsConfigMethods(configMethodsStr); in setWpsConfigMethods()
DWifiP2pNative.java415 return mSupplicantP2pIfaceHal.setWpsConfigMethods(cfg); in setConfigMethods()
DSupplicantP2pIfaceHalAidlImpl.java2212 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalAidlImpl
2226 mISupplicantP2pIface.setWpsConfigMethods(configMethodsMask); in setWpsConfigMethods()
DSupplicantP2pIfaceHalHidlImpl.java2322 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalHidlImpl
2333 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.java848 doNothing().when(mISupplicantStaIfaceMock).setWpsConfigMethods(anyInt()); in testSetWpsConfigMethods()
853 assertTrue(mDut.setWpsConfigMethods(WLAN0_IFACE_NAME, validConfigMethodsStr)); in testSetWpsConfigMethods()
854 verify(mISupplicantStaIfaceMock).setWpsConfigMethods(eq(expectedConfigMethods)); in testSetWpsConfigMethods()
858 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.java292 boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr); in setWpsConfigMethods() method
DSupplicantStaIfaceHal.java1404 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHal
1410 return mStaIfaceHal.setWpsConfigMethods(ifaceName, configMethodsStr); in setWpsConfigMethods()
DSupplicantStaIfaceHalAidlImpl.java1376 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHalAidlImpl
1383 return setWpsConfigMethods(ifaceName, configMethodsMask); in setWpsConfigMethods()
1387 private boolean setWpsConfigMethods(@NonNull String ifaceName, int configMethods) { in setWpsConfigMethods() method in SupplicantStaIfaceHalAidlImpl
1395 iface.setWpsConfigMethods(configMethods); in setWpsConfigMethods()
DSupplicantStaIfaceHalHidlImpl.java1756 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHalHidlImpl
1763 return setWpsConfigMethods(ifaceName, configMethodsMask); in setWpsConfigMethods()
1767 private boolean setWpsConfigMethods(@NonNull String ifaceName, short configMethods) { in setWpsConfigMethods() method in SupplicantStaIfaceHalHidlImpl
1773 SupplicantStatus status = iface.setWpsConfigMethods(configMethods); in setWpsConfigMethods()
DWifiNative.java2918 return mSupplicantStaIfaceHal.setWpsConfigMethods(ifaceName, cfg);