Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java44 int eid = data.get() & Constants.BYTE_MASK; in parseInformationElements()
45 int elementLength = data.get() & Constants.BYTE_MASK; in parseInformationElements()
148 channelUtilization = data.get() & Constants.BYTE_MASK; in from()
218 channelMode = ie.bytes[0] & Constants.BYTE_MASK; in from()
219 centerFreqIndex1 = ie.bytes[1] & Constants.BYTE_MASK; in from()
220 centerFreqIndex2 = ie.bytes[2] & Constants.BYTE_MASK; in from()
234 int anOptions = data.get() & Constants.BYTE_MASK; in from()
275 anqpOICount = data.get() & Constants.BYTE_MASK; in from()
277 int oi12Length = data.get() & Constants.BYTE_MASK; in from()
316 int hsConf = data.get() & Constants.BYTE_MASK; in from()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DUtils.java13 import static com.android.server.wifi.hotspot2.anqp.Constants.BYTE_MASK;
76 sb.append(String.format("%02x", (mac >>> n) & Constants.BYTE_MASK)); in macToString()
160 sb.append(String.format("%02x", b & BYTE_MASK)); in toHexString()
168 sb.append(String.format("%02x", o & BYTE_MASK)); in toHex()
238 sbx.append(String.format("%02x ", dup.get() & BYTE_MASK)); in bytesToBingoCard()
243 sbx.append(String.format("%c", toAscii(dup.get() & BYTE_MASK))); in bytesToBingoCard()
DNetworkDetail.java4 import static com.android.server.wifi.hotspot2.anqp.Constants.BYTE_MASK;
542 sb.append(String.format("%02x", (mac >>> (n * Byte.SIZE)) & BYTE_MASK)); in toMACString()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
DConstants.java19 public static final int BYTE_MASK = 0xff; field in Constants