Home
last modified time | relevance | path

Searched refs:startWpsPinKeypad (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java116 public boolean startWpsPinKeypad(String iface, String pin) { in startWpsPinKeypad() method in WifiP2pNative
117 return mSupplicantP2pIfaceHal.startWpsPinKeypad(iface, pin); in startWpsPinKeypad()
DSupplicantP2pIfaceHal.java1541 public boolean startWpsPinKeypad(String groupIfName, String pin) { in startWpsPinKeypad() method in SupplicantP2pIfaceHal
1557 result.setResult(mISupplicantP2pIface.startWpsPinKeypad(groupIfName, pin)); in startWpsPinKeypad()
DWifiP2pServiceImpl.java2319 ret = mWifiNative.startWpsPinKeypad(mGroup.getInterface(), in processMessage()
2422 mWifiNative.startWpsPinKeypad(mGroup.getInterface(), in processMessage()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java1952 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(eq(mIfaceName), eq("1234"))) in testStartWpsPinKeypad_success()
1955 assertFalse(mDut.startWpsPinKeypad(mIfaceName, "1234")); in testStartWpsPinKeypad_success()
1957 assertTrue(mDut.startWpsPinKeypad(mIfaceName, "1234")); in testStartWpsPinKeypad_success()
1966 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(anyString(), anyString())) in testStartWpsPinKeypad_invalidArguments()
1969 assertFalse(mDut.startWpsPinKeypad(null, "1234")); in testStartWpsPinKeypad_invalidArguments()
1970 assertFalse(mDut.startWpsPinKeypad(mIfaceName, null)); in testStartWpsPinKeypad_invalidArguments()
1981 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(anyString(), anyString())) in testStartWpsPinKeypad_failure()
1983 assertFalse(mDut.startWpsPinKeypad(mIfaceName, "1234")); in testStartWpsPinKeypad_failure()
1994 when(mISupplicantP2pIfaceMock.startWpsPinKeypad(anyString(), anyString())) in testStartWpsPinKeypad_exception()
1996 assertFalse(mDut.startWpsPinKeypad(mIfaceName, "1234")); in testStartWpsPinKeypad_exception()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNative.java475 public boolean startWpsPinKeypad(String pin) { in startWpsPinKeypad() method in WifiNative
476 return mSupplicantStaIfaceHal.startWpsPinKeypad(pin); in startWpsPinKeypad()
DSupplicantStaIfaceHal.java1577 public boolean startWpsPinKeypad(String pin) { in startWpsPinKeypad() method in SupplicantStaIfaceHal
1583 SupplicantStatus status = mISupplicantStaIface.startWpsPinKeypad(pin); in startWpsPinKeypad()
/frameworks/base/services/
Dart-profile407 HPLandroid/hardware/wifi/supplicant/V1_0/ISupplicantP2pIface;->startWpsPinKeypad(Ljava/lang/String;…
473 HPLandroid/hardware/wifi/supplicant/V1_0/ISupplicantStaIface;->startWpsPinKeypad(Ljava/lang/String;…