Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pDevice.java88 public int wpsConfigMethodsSupported; field in WifiP2pDevice
207 wpsConfigMethodsSupported = parseHex(match.group(6)); in WifiP2pDevice()
226 return (wpsConfigMethodsSupported & WPS_CONFIG_PUSHBUTTON) != 0; in wpsPbcSupported()
231 return (wpsConfigMethodsSupported & WPS_CONFIG_KEYPAD) != 0; in wpsKeypadSupported()
236 return (wpsConfigMethodsSupported & WPS_CONFIG_DISPLAY) != 0; in wpsDisplaySupported()
290 wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
314 sbuf.append("\n wps: ").append(wpsConfigMethodsSupported); in toString()
334 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported; in WifiP2pDevice()
348 dest.writeInt(wpsConfigMethodsSupported); in writeToParcel()
369 device.wpsConfigMethodsSupported = in.readInt();
DWifiP2pDeviceList.java99 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()