Searched refs:startWpsPinKeypad (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pNative.java116 public boolean startWpsPinKeypad(String iface, String pin) { method in class:WifiP2pNative
117 return mSupplicantP2pIfaceHal.startWpsPinKeypad(iface, pin);
H A DSupplicantP2pIfaceHal.java1540 public boolean startWpsPinKeypad(String groupIfName, String pin) { method in class:SupplicantP2pIfaceHal
1543 if (!checkSupplicantP2pIfaceAndLogFailure("startWpsPinKeypad")) return false;
1554 "startWpsPinKeypad(" + groupIfName + ", " + pin + ")");
1556 result.setResult(mISupplicantP2pIface.startWpsPinKeypad(groupIfName, pin));
H A DWifiP2pServiceImpl.java2208 ret = mWifiNative.startWpsPinKeypad(mGroup.getInterface(),
2316 mWifiNative.startWpsPinKeypad(mGroup.getInterface(),
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHalTest.java1948 * Sunny day scenario for startWpsPinKeypad()
1952 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(eq(mIfaceName), eq("1234")))
1955 assertFalse(mDut.startWpsPinKeypad(mIfaceName, "1234"));
1957 assertTrue(mDut.startWpsPinKeypad(mIfaceName, "1234"));
1966 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(anyString(), anyString()))
1969 assertFalse(mDut.startWpsPinKeypad(null, "1234"));
1970 assertFalse(mDut.startWpsPinKeypad(mIfaceName, null));
1976 * Verify that startWpsPinKeypad returns false, if status is not SUCCESS.
1981 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(anyString(), anyString()))
1983 assertFalse(mDut.startWpsPinKeypad(mIfaceNam
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java458 public boolean startWpsPinKeypad(String pin) { method in class:WifiNative
459 return mSupplicantStaIfaceHal.startWpsPinKeypad(pin);
H A DSupplicantStaIfaceHal.java1494 public boolean startWpsPinKeypad(String pin) { method in class:SupplicantStaIfaceHal
1497 final String methodStr = "startWpsPinKeypad";
1500 SupplicantStatus status = mISupplicantStaIface.startWpsPinKeypad(pin);

Completed in 93 milliseconds