Home
last modified time | relevance | path

Searched refs:mSupportedFeatures (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApCapability.java177 private @HotspotFeatures long mSupportedFeatures = 0; field in SoftApCapability
247 return (mSupportedFeatures & features) == features; in areFeaturesSupported()
258 mSupportedFeatures |= features; in setSupportedFeatures()
260 mSupportedFeatures &= ~features; in setSupportedFeatures()
335 mSupportedFeatures = source.mSupportedFeatures; in SoftApCapability()
355 mSupportedFeatures = features; in SoftApCapability()
367 dest.writeLong(mSupportedFeatures); in writeToParcel()
399 sbuf.append("SupportedFeatures=").append(mSupportedFeatures); in toString()
416 return mSupportedFeatures == capability.mSupportedFeatures in equals()
427 return Objects.hash(mSupportedFeatures, mMaximumSupportedClientNumber, in hashCode()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DSdpMnsRecord.java24 private final int mSupportedFeatures; field in SdpMnsRecord
36 mSupportedFeatures = supportedFeatures; in SdpMnsRecord()
45 mSupportedFeatures = in.readInt(); in SdpMnsRecord()
64 return mSupportedFeatures; in getSupportedFeatures()
80 dest.writeInt(mSupportedFeatures); in writeToParcel()
97 if (mSupportedFeatures != -1) { in toString()
98 ret = ret + "Supported features: " + mSupportedFeatures + "\n"; in toString()
DSdpPseRecord.java26 private final int mSupportedFeatures; field in SdpPseRecord
40 mSupportedFeatures = supportedFeatures; in SdpPseRecord()
49 mSupportedFeatures = in.readInt(); in SdpPseRecord()
69 return mSupportedFeatures; in getSupportedFeatures()
89 dest.writeInt(mSupportedFeatures); in writeToParcel()
110 if (mSupportedFeatures != -1) { in toString()
111 ret = ret + "Supported features: " + mSupportedFeatures + "\n"; in toString()
DSdpMasRecord.java26 private final int mSupportedFeatures; field in SdpMasRecord
50 mSupportedFeatures = supportedFeatures; in SdpMasRecord()
60 mSupportedFeatures = in.readInt(); in SdpMasRecord()
88 return mSupportedFeatures; in getSupportedFeatures()
110 dest.writeInt(mSupportedFeatures); in writeToParcel()
137 if (mSupportedFeatures != -1) { in toString()
138 ret = ret + "Supported features: " + mSupportedFeatures + "\n"; in toString()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DAvrcpPlayer.java263 private byte[] mSupportedFeatures = new byte[16]; field in AvrcpPlayer.Builder
309 mSupportedFeatures = supportedFeatures; in setSupportedFeatures()
322 mSupportedFeatures[byteNumber] = (byte) (mSupportedFeatures[byteNumber] | bitMask); in setSupportedFeature()
351 mDevice, mPlayerId, mPlayerName, mSupportedFeatures, mPlayStatus); in build()