Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java698 when(mP2pIfaceHalAidlMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetWpsDeviceName()
699 assertTrue(mDut.setWpsDeviceName(PARAMS)); in testSetWpsDeviceName()
700 verify(mP2pIfaceHalAidlMock).setWpsDeviceName(eq(PARAMS)); in testSetWpsDeviceName()
DWifiP2pNativeTest.java494 when(mSupplicantP2pIfaceHalMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetDeviceName()
496 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceName(eq(TEST_DEVICE_NAME)); in testSetDeviceName()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java496 boolean setWpsDeviceName(String name); in setWpsDeviceName() method
DSupplicantP2pIfaceHal.java912 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHal
918 return mP2pIfaceHal.setWpsDeviceName(name); in setWpsDeviceName()
DWifiP2pNative.java386 return mSupplicantP2pIfaceHal.setWpsDeviceName(name); in setDeviceName()
DSupplicantP2pIfaceHalHidlImpl.java2270 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHalHidlImpl
2279 result.setResult(mISupplicantP2pIface.setWpsDeviceName(name)); in setWpsDeviceName()
DSupplicantP2pIfaceHalAidlImpl.java2446 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHalAidlImpl
2456 mISupplicantP2pIface.setWpsDeviceName(name); in setWpsDeviceName()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java509 when(mStaIfaceHalAidlMock.setWpsDeviceName(anyString(), anyString())).thenReturn(true); in testSetWpsDeviceName()
510 assertTrue(mDut.setWpsDeviceName(IFACE_NAME, PARAMS)); in testSetWpsDeviceName()
511 verify(mStaIfaceHalAidlMock).setWpsDeviceName(eq(IFACE_NAME), eq(PARAMS)); in testSetWpsDeviceName()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java244 boolean setWpsDeviceName(@NonNull String ifaceName, String deviceName); in setWpsDeviceName() method
DSupplicantStaIfaceHal.java1306 public boolean setWpsDeviceName(@NonNull String ifaceName, String deviceName) { in setWpsDeviceName() method in SupplicantStaIfaceHal
1312 return mStaIfaceHal.setWpsDeviceName(ifaceName, deviceName); in setWpsDeviceName()
DSupplicantStaIfaceHalHidlImpl.java1633 public boolean setWpsDeviceName(@NonNull String ifaceName, String name) { in setWpsDeviceName() method in SupplicantStaIfaceHalHidlImpl
1639 SupplicantStatus status = iface.setWpsDeviceName(name); in setWpsDeviceName()
DSupplicantStaIfaceHalAidlImpl.java1281 public boolean setWpsDeviceName(@NonNull String ifaceName, String name) { in setWpsDeviceName() method in SupplicantStaIfaceHalAidlImpl
1289 iface.setWpsDeviceName(name); in setWpsDeviceName()
DWifiNative.java3109 return mSupplicantStaIfaceHal.setWpsDeviceName(ifaceName, name);