Home
last modified time | relevance | path

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 DWifiP2pNativeTest.java239 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 DWifiP2pNative.java333 return mSupplicantP2pIfaceHal.setWpsDeviceType(type); in setP2pDeviceType()
H A DSupplicantP2pIfaceHal.java2214 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 DISupplicantIface.hal151 setWpsDeviceType(uint8_t[8] type) generates (SupplicantStatus status);
/aosp12/hardware/interfaces/wifi/supplicant/1.0/vts/functional/
H A Dsupplicant_sta_iface_hidl_test.cpp473 HIDL_INVOKE(sta_iface_, setWpsDeviceType, kTestWpsDeviceType).code); in TEST_P()
H A Dsupplicant_p2p_iface_hidl_test.cpp527 HIDL_INVOKE(p2p_iface_, setWpsDeviceType, kTestWpsDeviceType).code); in TEST_P()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DSupplicantStaIfaceHalTest.java879 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 DSupplicantStaIfaceHal.java1569 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 DWifiNative.java2489 return mSupplicantStaIfaceHal.setWpsDeviceType(ifaceName, type);