Searched refs:setWpsDeviceType (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pNative.java158 return mSupplicantP2pIfaceHal.setWpsDeviceType(type);
H A DSupplicantP2pIfaceHal.java1898 public boolean setWpsDeviceType(String typeStr) { method in class:SupplicantP2pIfaceHal
1915 if (!checkSupplicantP2pIfaceAndLogFailure("setWpsDeviceType")) return false;
1917 "setWpsDeviceType(" + typeStr + ")");
1919 result.setResult(mISupplicantP2pIface.setWpsDeviceType(bytes));
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DSupplicantStaIfaceHalTest.java791 when(mISupplicantStaIfaceMock.setWpsDeviceType(any(byte[].class)))
797 assertTrue(mDut.setWpsDeviceType(validDeviceTypeStr));
798 verify(mISupplicantStaIfaceMock).setWpsDeviceType(eq(expectedDeviceType));
801 assertFalse(mDut.setWpsDeviceType(invalidDeviceType1Str));
803 assertFalse(mDut.setWpsDeviceType(invalidDeviceType2Str));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStaIfaceHal.java805 public boolean setWpsDeviceType(String typeStr) { method in class:SupplicantStaIfaceHal
821 return setWpsDeviceType(bytes);
828 private boolean setWpsDeviceType(byte[/* 8 */] type) { method in class:SupplicantStaIfaceHal
830 final String methodStr = "setWpsDeviceType";
833 SupplicantStatus status = mISupplicantStaIface.setWpsDeviceType(type);
H A DWifiNative.java582 return mSupplicantStaIfaceHal.setWpsDeviceType(type);

Completed in 67 milliseconds