Home
last modified time | relevance | path

Searched refs:wpsConfigMethodsSupported (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pDevice.java100 public int wpsConfigMethodsSupported; field in WifiP2pDevice
223 wpsConfigMethodsSupported = parseHex(match.group(6)); in WifiP2pDevice()
242 return (wpsConfigMethodsSupported & WPS_CONFIG_PUSHBUTTON) != 0; in wpsPbcSupported()
247 return (wpsConfigMethodsSupported & WPS_CONFIG_KEYPAD) != 0; in wpsKeypadSupported()
252 return (wpsConfigMethodsSupported & WPS_CONFIG_DISPLAY) != 0; in wpsDisplaySupported()
307 wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
337 sbuf.append("\n wps: ").append(wpsConfigMethodsSupported); in toString()
358 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported; in WifiP2pDevice()
375 dest.writeInt(wpsConfigMethodsSupported); in writeToParcel()
397 device.wpsConfigMethodsSupported = in.readInt();
DWifiP2pDeviceList.java100 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
/frameworks/base/wifi/tests/src/android/net/wifi/p2p/
DWifiP2pDeviceTest.java43 assertEquals(devA.wpsConfigMethodsSupported, devB.wpsConfigMethodsSupported); in compareWifiP2pDevices()
91 device.wpsConfigMethodsSupported = 0x0008; in testCopyConstructorWithUpdatedValues()
110 device.wpsConfigMethodsSupported = 0x0008; in testCopyConstructorWithNullWfdInfo()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceCallbackTest.java109 assertEquals(device.wpsConfigMethodsSupported, fakeConfigMethods); in testOnDeviceFound_success()
164 assertEquals(fakeConfigMethods, device.wpsConfigMethodsSupported); in testOnDeviceFoundWithSignBitInDeviceInfoBytesSuccess()
DWifiP2pServiceImplTest.java659 assertEquals(mTestThisDevice.wpsConfigMethodsSupported, device.wpsConfigMethodsSupported); in checkSendThisDeviceChangedBroadcast()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DSupplicantP2pIfaceCallback.java125 device.wpsConfigMethodsSupported = configMethods; in onDeviceFound()