Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java105 public int wpsConfigMethodsSupported; field in WifiP2pDevice
229 wpsConfigMethodsSupported = parseHex(match.group(6)); in WifiP2pDevice()
260 return (wpsConfigMethodsSupported & WPS_CONFIG_PUSHBUTTON) != 0; in wpsPbcSupported()
265 return (wpsConfigMethodsSupported & WPS_CONFIG_KEYPAD) != 0; in wpsKeypadSupported()
270 return (wpsConfigMethodsSupported & WPS_CONFIG_DISPLAY) != 0; in wpsDisplaySupported()
324 wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
354 sbuf.append("\n wps: ").append(wpsConfigMethodsSupported); in toString()
375 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported; in WifiP2pDevice()
392 dest.writeInt(wpsConfigMethodsSupported); in writeToParcel()
414 device.wpsConfigMethodsSupported = in.readInt();
H A DWifiP2pDeviceList.java101 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/p2p/
H A DWifiP2pDeviceTest.java43 assertEquals(devA.wpsConfigMethodsSupported, devB.wpsConfigMethodsSupported); in compareWifiP2pDevices()
91 device.wpsConfigMethodsSupported = 0x0008; in testCopyConstructorWithUpdatedValues()
110 device.wpsConfigMethodsSupported = 0x0008; in testCopyConstructorWithNullWfdInfo()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceCallbackV1_4Impl.java308 device.wpsConfigMethodsSupported = configMethods; in onR2DeviceFound()
H A DSupplicantP2pIfaceCallbackImpl.java130 device.wpsConfigMethodsSupported = configMethods; in onDeviceFound()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceCallbackImplTest.java116 assertEquals(device.wpsConfigMethodsSupported, fakeConfigMethods); in testOnDeviceFound_success()
170 assertEquals(fakeConfigMethods, device.wpsConfigMethodsSupported); in testOnDeviceFoundWithSignBitInDeviceInfoBytesSuccess()
H A DWifiP2pServiceImplTest.java771 assertEquals(mTestThisDevice.wpsConfigMethodsSupported, device.wpsConfigMethodsSupported); in checkSendThisDeviceChangedBroadcast()