/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceHalTest.java | 686 when(mP2pIfaceHalAidlMock.setWpsDeviceType(anyString())).thenReturn(true); in testSetWpsDeviceType() 687 assertTrue(mDut.setWpsDeviceType(PARAMS)); in testSetWpsDeviceType() 688 verify(mP2pIfaceHalAidlMock).setWpsDeviceType(eq(PARAMS)); in testSetWpsDeviceType()
|
D | WifiP2pNativeTest.java | 503 when(mSupplicantP2pIfaceHalMock.setWpsDeviceType(anyString())).thenReturn(true); in testSetP2pDeviceType() 505 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceType(eq(TEST_DEVICE_TYPE)); in testSetP2pDeviceType()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | ISupplicantP2pIfaceHal.java | 496 boolean setWpsDeviceType(String typeStr); in setWpsDeviceType() method
|
D | SupplicantP2pIfaceHal.java | 919 public boolean setWpsDeviceType(String typeStr) { in setWpsDeviceType() method in SupplicantP2pIfaceHal 925 return mP2pIfaceHal.setWpsDeviceType(typeStr); in setWpsDeviceType()
|
D | WifiP2pNative.java | 405 return mSupplicantP2pIfaceHal.setWpsDeviceType(type); in setP2pDeviceType()
|
D | SupplicantP2pIfaceHalAidlImpl.java | 2170 public boolean setWpsDeviceType(String typeStr) { in setWpsDeviceType() method in SupplicantP2pIfaceHalAidlImpl 2192 mISupplicantP2pIface.setWpsDeviceType(bytes); in setWpsDeviceType()
|
D | SupplicantP2pIfaceHalHidlImpl.java | 2282 public boolean setWpsDeviceType(String typeStr) { in setWpsDeviceType() method in SupplicantP2pIfaceHalHidlImpl 2303 result.setResult(mISupplicantP2pIface.setWpsDeviceType(bytes)); in setWpsDeviceType()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaIfaceHalTest.java | 515 when(mStaIfaceHalAidlMock.setWpsDeviceType(anyString(), anyString())).thenReturn(true); in testSetWpsDeviceType() 516 assertTrue(mDut.setWpsDeviceType(IFACE_NAME, PARAMS)); in testSetWpsDeviceType() 517 verify(mStaIfaceHalAidlMock).setWpsDeviceType(eq(IFACE_NAME), eq(PARAMS)); in testSetWpsDeviceType()
|
D | SupplicantStaIfaceHalAidlImplTest.java | 827 doNothing().when(mISupplicantStaIfaceMock).setWpsDeviceType(any(byte[].class)); in testSetWpsDeviceType() 832 assertTrue(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, validDeviceTypeStr)); in testSetWpsDeviceType() 833 verify(mISupplicantStaIfaceMock).setWpsDeviceType(eq(expectedDeviceType)); in testSetWpsDeviceType() 836 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType1Str)); in testSetWpsDeviceType() 837 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType2Str)); in testSetWpsDeviceType()
|
D | SupplicantStaIfaceHalHidlImplTest.java | 987 when(mISupplicantStaIfaceMock.setWpsDeviceType(any(byte[].class))) in testSetWpsDeviceType() 993 assertTrue(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, validDeviceTypeStr)); in testSetWpsDeviceType() 994 verify(mISupplicantStaIfaceMock).setWpsDeviceType(eq(expectedDeviceType)); in testSetWpsDeviceType() 997 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType1Str)); in testSetWpsDeviceType() 999 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType2Str)); in testSetWpsDeviceType()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ISupplicantStaIfaceHal.java | 247 boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr); in setWpsDeviceType() method
|
D | SupplicantStaIfaceHal.java | 1319 public boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr) { in setWpsDeviceType() method in SupplicantStaIfaceHal 1325 return mStaIfaceHal.setWpsDeviceType(ifaceName, typeStr); in setWpsDeviceType()
|
D | SupplicantStaIfaceHalAidlImpl.java | 1221 public boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr) { in setWpsDeviceType() method in SupplicantStaIfaceHalAidlImpl 1238 return setWpsDeviceType(ifaceName, bytes); in setWpsDeviceType() 1246 private boolean setWpsDeviceType(@NonNull String ifaceName, byte[/* 8 */] type) { in setWpsDeviceType() method in SupplicantStaIfaceHalAidlImpl 1254 iface.setWpsDeviceType(type); in setWpsDeviceType()
|
D | SupplicantStaIfaceHalHidlImpl.java | 1621 public boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr) { in setWpsDeviceType() method in SupplicantStaIfaceHalHidlImpl 1638 return setWpsDeviceType(ifaceName, bytes); in setWpsDeviceType() 1646 private boolean setWpsDeviceType(@NonNull String ifaceName, byte[/* 8 */] type) { in setWpsDeviceType() method in SupplicantStaIfaceHalHidlImpl 1652 SupplicantStatus status = iface.setWpsDeviceType(type); in setWpsDeviceType()
|
D | WifiNative.java | 2908 return mSupplicantStaIfaceHal.setWpsDeviceType(ifaceName, type);
|