/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceHalTest.java | 697 when(mP2pIfaceHalAidlMock.setWpsConfigMethods(anyString())).thenReturn(true); in testSetWpsConfigMethods() 698 assertTrue(mDut.setWpsConfigMethods(PARAMS)); in testSetWpsConfigMethods() 699 verify(mP2pIfaceHalAidlMock).setWpsConfigMethods(eq(PARAMS)); in testSetWpsConfigMethods()
|
D | WifiP2pNativeTest.java | 513 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/ |
D | ISupplicantP2pIfaceHal.java | 504 boolean setWpsConfigMethods(String configMethodsStr); in setWpsConfigMethods() method
|
D | SupplicantP2pIfaceHal.java | 935 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHal 941 return mP2pIfaceHal.setWpsConfigMethods(configMethodsStr); in setWpsConfigMethods()
|
D | WifiP2pNative.java | 415 return mSupplicantP2pIfaceHal.setWpsConfigMethods(cfg); in setConfigMethods()
|
D | SupplicantP2pIfaceHalAidlImpl.java | 2212 public boolean setWpsConfigMethods(String configMethodsStr) { in setWpsConfigMethods() method in SupplicantP2pIfaceHalAidlImpl 2226 mISupplicantP2pIface.setWpsConfigMethods(configMethodsMask); in setWpsConfigMethods()
|
D | SupplicantP2pIfaceHalHidlImpl.java | 2322 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/ |
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 | 848 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()
|
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 | 292 boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr); in setWpsConfigMethods() method
|
D | SupplicantStaIfaceHal.java | 1404 public boolean setWpsConfigMethods(@NonNull String ifaceName, String configMethodsStr) { in setWpsConfigMethods() method in SupplicantStaIfaceHal 1410 return mStaIfaceHal.setWpsConfigMethods(ifaceName, configMethodsStr); in setWpsConfigMethods()
|
D | SupplicantStaIfaceHalAidlImpl.java | 1376 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()
|
D | SupplicantStaIfaceHalHidlImpl.java | 1756 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()
|
D | WifiNative.java | 2918 return mSupplicantStaIfaceHal.setWpsConfigMethods(ifaceName, cfg);
|