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.java675 when(mP2pIfaceHalAidlMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetWpsDeviceName()
676 assertTrue(mDut.setWpsDeviceName(PARAMS)); in testSetWpsDeviceName()
677 verify(mP2pIfaceHalAidlMock).setWpsDeviceName(eq(PARAMS)); in testSetWpsDeviceName()
DWifiP2pNativeTest.java439 when(mSupplicantP2pIfaceHalMock.setWpsDeviceName(anyString())).thenReturn(true); in testSetDeviceName()
441 verify(mSupplicantP2pIfaceHalMock).setWpsDeviceName(eq(TEST_DEVICE_NAME)); in testSetDeviceName()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java488 boolean setWpsDeviceName(String name); in setWpsDeviceName() method
DSupplicantP2pIfaceHal.java903 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHal
909 return mP2pIfaceHal.setWpsDeviceName(name); in setWpsDeviceName()
DWifiP2pNative.java341 return mSupplicantP2pIfaceHal.setWpsDeviceName(name); in setDeviceName()
DSupplicantP2pIfaceHalAidlImpl.java2143 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHalAidlImpl
2153 mISupplicantP2pIface.setWpsDeviceName(name); in setWpsDeviceName()
DSupplicantP2pIfaceHalHidlImpl.java2258 public boolean setWpsDeviceName(String name) { in setWpsDeviceName() method in SupplicantP2pIfaceHalHidlImpl
2267 result.setResult(mISupplicantP2pIface.setWpsDeviceName(name)); in setWpsDeviceName()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java504 when(mStaIfaceHalAidlMock.setWpsDeviceName(anyString(), anyString())).thenReturn(true); in testSetWpsDeviceName()
505 assertTrue(mDut.setWpsDeviceName(IFACE_NAME, PARAMS)); in testSetWpsDeviceName()
506 verify(mStaIfaceHalAidlMock).setWpsDeviceName(eq(IFACE_NAME), eq(PARAMS)); in testSetWpsDeviceName()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java238 boolean setWpsDeviceName(@NonNull String ifaceName, String deviceName); in setWpsDeviceName() method
DSupplicantStaIfaceHal.java1302 public boolean setWpsDeviceName(@NonNull String ifaceName, String deviceName) { in setWpsDeviceName() method in SupplicantStaIfaceHal
1308 return mStaIfaceHal.setWpsDeviceName(ifaceName, deviceName); in setWpsDeviceName()
DSupplicantStaIfaceHalAidlImpl.java1195 public boolean setWpsDeviceName(@NonNull String ifaceName, String name) { in setWpsDeviceName() method in SupplicantStaIfaceHalAidlImpl
1203 iface.setWpsDeviceName(name); in setWpsDeviceName()
DSupplicantStaIfaceHalHidlImpl.java1599 public boolean setWpsDeviceName(@NonNull String ifaceName, String name) { in setWpsDeviceName() method in SupplicantStaIfaceHalHidlImpl
1605 SupplicantStatus status = iface.setWpsDeviceName(name); in setWpsDeviceName()
DWifiNative.java2897 return mSupplicantStaIfaceHal.setWpsDeviceName(ifaceName, name);