Searched refs:setWpsDeviceType (Results 1 – 9 of 9) sorted by relevance
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
H A D | WifiP2pNativeTest.java | 239 when(mSupplicantP2pIfaceHalMock.setWpsDeviceType(anyString())).thenReturn(true); in testSetP2pDeviceType() 241 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceType(eq(TEST_DEVICE_TYPE)); in testSetP2pDeviceType()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
H A D | WifiP2pNative.java | 333 return mSupplicantP2pIfaceHal.setWpsDeviceType(type); in setP2pDeviceType()
|
H A D | SupplicantP2pIfaceHal.java | 2214 public boolean setWpsDeviceType(String typeStr) { in setWpsDeviceType() method in SupplicantP2pIfaceHal 2235 result.setResult(mISupplicantP2pIface.setWpsDeviceType(bytes)); in setWpsDeviceType()
|
/aosp12/hardware/interfaces/wifi/supplicant/1.0/ |
H A D | ISupplicantIface.hal | 151 setWpsDeviceType(uint8_t[8] type) generates (SupplicantStatus status);
|
/aosp12/hardware/interfaces/wifi/supplicant/1.0/vts/functional/ |
H A D | supplicant_sta_iface_hidl_test.cpp | 473 HIDL_INVOKE(sta_iface_, setWpsDeviceType, kTestWpsDeviceType).code); in TEST_P()
|
H A D | supplicant_p2p_iface_hidl_test.cpp | 527 HIDL_INVOKE(p2p_iface_, setWpsDeviceType, kTestWpsDeviceType).code); in TEST_P()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
H A D | SupplicantStaIfaceHalTest.java | 879 when(mISupplicantStaIfaceMock.setWpsDeviceType(any(byte[].class))) in testSetWpsDeviceType() 885 assertTrue(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, validDeviceTypeStr)); in testSetWpsDeviceType() 886 verify(mISupplicantStaIfaceMock).setWpsDeviceType(eq(expectedDeviceType)); in testSetWpsDeviceType() 889 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType1Str)); in testSetWpsDeviceType() 891 assertFalse(mDut.setWpsDeviceType(WLAN0_IFACE_NAME, invalidDeviceType2Str)); in testSetWpsDeviceType()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | SupplicantStaIfaceHal.java | 1569 public boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr) { in setWpsDeviceType() method in SupplicantStaIfaceHal 1586 return setWpsDeviceType(ifaceName, bytes); in setWpsDeviceType() 1594 private boolean setWpsDeviceType(@NonNull String ifaceName, byte[/* 8 */] type) { in setWpsDeviceType() method in SupplicantStaIfaceHal 1600 SupplicantStatus status = iface.setWpsDeviceType(type); in setWpsDeviceType()
|
H A D | WifiNative.java | 2489 return mSupplicantStaIfaceHal.setWpsDeviceType(ifaceName, type);
|