Lines Matching refs:element

76     // BSS Load element:
95 * From Interworking element:
97 * mVenueGroup and mVenueType may be null if not present in the Interworking element.
105 * From HS20 Indication element:
106 * mHSRelease is null only if the HS20 Indication element was not present.
107 * mAnqpDomainID is set to -1 if not present in the element.
115 * mRoamingConsortiums is either null, if the element was not present, or is an array of
128 throw new IllegalArgumentException("Null information element string");
132 throw new IllegalArgumentException("No element separator");
183 ByteBuffer element;
192 throw new IllegalArgumentException("BSS Load element length is not 5: " +
200 element = getAndAdvancePayload(data, elementLength);
201 int primary_channel = element.get();
202 secondChanelOffset = element.get() & 0x3;
205 element = getAndAdvancePayload(data, elementLength);
206 channelMode = element.get() & Constants.BYTE_MASK;
207 centerFreqIndex1 = element.get() & Constants.BYTE_MASK;
208 centerFreqIndex2 = element.get() & Constants.BYTE_MASK;
229 throw new IllegalArgumentException("Bad Interworking element length: " +
268 element = getAndAdvancePayload(data, elementLength);
269 if (elementLength >= 5 && element.getInt() == Constants.HS20_FRAME_PREFIX) {
270 int hsConf = element.get() & Constants.BYTE_MASK;
285 "HS20 indication element too short: " + elementLength);
287 anqpDomainID = element.getShort() & Constants.SHORT_MASK;
292 element = data.duplicate();
301 element.position(element.position() + elementLength);
305 element.position(element.position() + index);
307 RTTResponder = (element.get() & (0x1 << offset)) != 0;