| /packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
| D | SupplicantP2pIfaceHalTest.java | 693 when(mP2pIfaceHalAidlMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetWpsConfigMethods() 694 assertTrue(mDut.setWpsConfigMethods(PARAMS)); in testSetWpsConfigMethods() 695 verify(mP2pIfaceHalAidlMock).setWpsConfigMethods(eq(PARAMS)); in testSetWpsConfigMethods()
|
| D | WifiP2pNativeTest.java | 498 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/ |
| D | ISupplicantP2pIfaceHal.java | 484 boolean setWpsConfigMethods(String configMethodsStr); in setWpsConfigMethods() method
|
| D | SupplicantP2pIfaceHal.java | 923 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHal 929 return mP2pIfaceHal.setWpsConfigMethods(configMethodsStr); in setWpsConfigMethods()
|
| D | WifiP2pNative.java | 361 return mSupplicantP2pIfaceHal.setWpsConfigMethods(cfg); in setConfigMethods()
|
| D | SupplicantP2pIfaceHalAidlImpl.java | 2071 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalAidlImpl 2085 mISupplicantP2pIface.setWpsConfigMethods(configMethodsMask); in setWpsConfigMethods()
|
| D | SupplicantP2pIfaceHalHidlImpl.java | 2328 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/ |
| D | SupplicantStaIfaceHalTest.java | 570 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()
|
| D | SupplicantStaIfaceHalAidlImplTest.java | 841 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()
|
| D | SupplicantStaIfaceHalHidlImplTest.java | 1011 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/ |
| D | ISupplicantStaIfaceHal.java | 291 boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr); in setWpsConfigMethods() method
|
| D | SupplicantStaIfaceHal.java | 1397 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHal 1403 return mStaIfaceHal.setWpsConfigMethods(ifaceName, configMethodsStr); in setWpsConfigMethods()
|
| D | SupplicantStaIfaceHalAidlImpl.java | 1355 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()
|
| D | SupplicantStaIfaceHalHidlImpl.java | 1747 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()
|
| D | WifiNative.java | 2651 return mSupplicantStaIfaceHal.setWpsConfigMethods(ifaceName, cfg);
|