Home
last modified time | relevance | path

Searched refs:setWpsDeviceName (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
H A DWifiP2pNativeTest.java165 when(mSupplicantP2pIfaceHalMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetDeviceName()
167 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceName(eq(TEST_DEVICE_NAME)); in testSetDeviceName()
175 when(mSupplicantP2pIfaceHalMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetP2pDeviceName()
177 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceName(eq(TEST_DEVICE_NAME)); in testSetP2pDeviceName()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pNative.java259 return mSupplicantP2pIfaceHal.setWpsDeviceName(name); in setDeviceName()
323 return mSupplicantP2pIfaceHal.setWpsDeviceName(name); in setP2pDeviceName()
H A DSupplicantP2pIfaceHal.java2190 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHal
2199 result.setResult(mISupplicantP2pIface.setWpsDeviceName(name)); in setWpsDeviceName()
/aosp12/hardware/interfaces/wifi/supplicant/1.0/
H A DISupplicantIface.hal138 setWpsDeviceName(string name) generates (SupplicantStatus status);
/aosp12/hardware/interfaces/wifi/supplicant/1.0/vts/functional/
H A Dsupplicant_sta_iface_hidl_test.cpp464 HIDL_INVOKE(sta_iface_, setWpsDeviceName, kTestWpsDeviceName).code); in TEST_P()
H A Dsupplicant_p2p_iface_hidl_test.cpp518 HIDL_INVOKE(p2p_iface_, setWpsDeviceName, kTestWpsDeviceName).code); in TEST_P()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DSupplicantStaIfaceHal.java1547 public boolean setWpsDeviceName(@NonNull String ifaceName, String name) { in setWpsDeviceName() method in SupplicantStaIfaceHal
1553 SupplicantStatus status = iface.setWpsDeviceName(name); in setWpsDeviceName()
H A DWifiNative.java2478 return mSupplicantStaIfaceHal.setWpsDeviceName(ifaceName, name);