Home
last modified time | relevance | path

Searched refs:nextSetBit (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DEntitlementManager.java262 for (int downstream = mCurrentDownstreams.nextSetBit(0); downstream >= 0; in maybeRunProvisioning()
263 downstream = mCurrentDownstreams.nextSetBit(downstream + 1)) { in maybeRunProvisioning()
520 for (int type = mCurrentDownstreams.nextSetBit(0); type >= 0; in dump()
521 type = mCurrentDownstreams.nextSetBit(type + 1)) { in dump()
532 for (int type = mExemptedDownstreams.nextSetBit(0); type >= 0; in dump()
533 type = mExemptedDownstreams.nextSetBit(type + 1)) { in dump()
/packages/modules/Wifi/framework/java/android/net/wifi/
DSecurityParams.java537 int nextSetBit = -1; in writeBitSet() local
541 while ((nextSetBit = set.nextSetBit(nextSetBit + 1)) != -1) { in writeBitSet()
542 dest.writeInt(nextSetBit); in writeBitSet()
DWifiConfiguration.java3273 int nextSetBit = -1; in writeBitSet() local
3277 while ((nextSetBit = set.nextSetBit(nextSetBit + 1)) != -1) { in writeBitSet()
3278 dest.writeInt(nextSetBit); in writeBitSet()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java835 for (int bit = keyMgmt.nextSetBit(0); bit != -1; in wifiConfigurationToSupplicantKeyMgmtMask()
836 bit = keyMgmt.nextSetBit(bit + 1)) { in wifiConfigurationToSupplicantKeyMgmtMask()
906 for (int bit = protoMask.nextSetBit(0); bit != -1; in wifiConfigurationToSupplicantProtoMask()
907 bit = protoMask.nextSetBit(bit + 1)) { in wifiConfigurationToSupplicantProtoMask()
932 for (int bit = authAlgMask.nextSetBit(0); bit != -1; in wifiConfigurationToSupplicantAuthAlgMask()
933 bit = authAlgMask.nextSetBit(bit + 1)) { in wifiConfigurationToSupplicantAuthAlgMask()
958 for (int bit = groupCipherMask.nextSetBit(0); bit != -1; bit = in wifiConfigurationToSupplicantGroupCipherMask()
959 groupCipherMask.nextSetBit(bit + 1)) { in wifiConfigurationToSupplicantGroupCipherMask()
1016 for (int bit = groupMgmtCipherMask.nextSetBit(0); bit != -1; bit = in wifiConfigurationToSupplicantGroupMgmtCipherMask()
1017 groupMgmtCipherMask.nextSetBit(bit + 1)) { in wifiConfigurationToSupplicantGroupMgmtCipherMask()
[all …]