Searched refs:ie (Results 1 - 25 of 99) sorted by relevance

1234

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DInformationElementUtilTest.java247 InformationElement ie = new InformationElement();
248 ie.id = InformationElement.EID_RSN;
249 ie.bytes = new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x0F,
256 InformationElement[] ies = new InformationElement[] { ie };
272 InformationElement ie = new InformationElement();
273 ie.id = InformationElement.EID_VSA;
274 ie.bytes = new byte[] { (byte) 0x00, (byte) 0x50, (byte) 0xF2, (byte) 0x01,
282 InformationElement[] ies = new InformationElement[] { ie };
301 InformationElement ie = new InformationElement();
302 ie
[all...]
H A DScanDetailUtilTest.java89 InformationElement ie = new InformationElement();
90 ie.id = id;
91 ie.bytes = bytes;
92 return ie;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DInformationElementUtil.java59 InformationElement ie = new InformationElement();
60 ie.id = eid;
61 ie.bytes = new byte[elementLength];
62 data.get(ie.bytes);
63 infoElements.add(ie);
74 public void from(InformationElement ie) { argument
75 if (ie.id != InformationElement.EID_BSS_LOAD) {
76 throw new IllegalArgumentException("Element id is not BSS_LOAD, : " + ie.id);
78 if (ie.bytes.length != 5) {
80 + ie
116 from(InformationElement ie) argument
150 from(InformationElement ie) argument
167 from(InformationElement ie) argument
201 from(InformationElement ie) argument
245 from(InformationElement ie) argument
290 from(InformationElement ie) argument
347 parseRsnElement(InformationElement ie) argument
424 isWpaOneElement(InformationElement ie) argument
448 parseWpaOneElement(InformationElement ie) argument
589 from(InformationElement ie) argument
732 from(InformationElement ie) argument
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DSectionsCmd.cpp24 for (iterator it = begin(), ie = end(); it != ie; ++it) {
33 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
67 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
H A DOutputSectDesc.cpp35 for (iterator it = begin(), ie = end(); it != ie; ++it) {
100 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
121 ie = m_Epilog.phdrs().end();
122 it != ie;
159 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
H A DStringList.cpp36 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
H A DInputSectDesc.cpp51 ie = m_Spec.excludeFiles().end();
52 it != ie;
61 ie = m_Spec.sections().end();
62 it != ie;
H A DRpnExpr.cpp35 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
44 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
H A DAssignment.cpp109 for (RpnExpr::iterator it = m_RpnExpr.begin(), ie = m_RpnExpr.end();
110 it != ie;
146 for (RpnExpr::iterator it = m_RpnExpr.begin(), ie = m_RpnExpr.end();
147 it != ie;
H A DGroupCmd.cpp50 ie = m_StringList.end();
51 it != ie;
83 ie = m_StringList.end();
84 it != ie;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableInflater.java194 final InflateException ie = new InflateException(
196 ie.initCause(e);
197 throw ie;
200 final InflateException ie = new InflateException(
202 ie.initCause(e);
203 throw ie;
206 final InflateException ie = new InflateException(
208 ie.initCause(e);
209 throw ie;
211 final InflateException ie
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DBranchIslandFactory.cpp46 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie;
81 for (iterator it = begin(), ie = end(), prev = ie; it != ie;
91 if ((prev != ie) && (pFragment.getParent() == (*prev).getParent())) {
H A DStubFactory.cpp28 for (StubPoolType::iterator it = m_StubPool.begin(), ie = m_StubPool.end();
29 it != ie;
113 ie = m_StubPool.end(); it != ie; ++it) {
122 ie = m_StubPool.end(); it != ie; ++it) {
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp38 for (iterator target = begin(), ie = end(); target != ie; ++target) {
71 ie = mcld::TargetRegistry::end();
72 it != ie;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanResults.java84 ScanResult.InformationElement ie = new ScanResult.InformationElement();
85 ie.id = ScanResult.InformationElement.EID_SSID;
86 ie.bytes = ssid.getBytes(Charset.forName("UTF-8"));
87 return ie;
110 ScanResult.InformationElement[] ie;
112 ie = new ScanResult.InformationElement[1];
113 ie[0] = generateSsidIe(ssid);
115 ie = new ScanResult.InformationElement[0];
118 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq);
123 ie, anqpLine
[all...]
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java388 InflateException ie = new InflateException(attrs
392 ie.initCause(e);
393 throw ie;
399 InflateException ie = new InflateException(attrs
403 ie.initCause(e);
404 throw ie;
443 InflateException ie = new InflateException(attrs
446 ie.initCause(e);
447 throw ie;
450 InflateException ie
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceInflater.java262 final InflateException ie = new InflateException(attrs
264 ie.initCause(e);
265 throw ie;
301 final InflateException ie = new InflateException(attrs
304 ie.initCause(e);
305 throw ie;
308 final InflateException ie = new InflateException(attrs
311 ie.initCause(e);
312 throw ie;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp34 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
H A DMipsLA25Stub.cpp46 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it)
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DNetworkDetail.java165 for (ScanResult.InformationElement ie : infoElements) {
166 iesFound.add(ie.id);
167 switch (ie.id) {
169 ssidOctets = ie.bytes;
172 bssLoad.from(ie);
175 htOperation.from(ie);
178 vhtOperation.from(ie);
181 interworking.from(ie);
184 roamingConsortium.from(ie);
187 vsa.from(ie);
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64PLT.cpp108 AArch64PLT::iterator ie = m_pSectionData->end(); local
109 assert(it != ie && "FragmentList is empty, applyPLT1 failed!");
122 while (it != ie) {
159 AArch64PLT::iterator ie = end(); local
160 while (it != ie) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp103 ARMPLT::iterator ie = m_pSectionData->end(); local
104 assert(it != ie && "FragmentList is empty, applyPLT1 failed!");
116 while (it != ie) {
151 ARMPLT::iterator ie = end(); local
152 while (it != ie) {
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DGenericInflater.java377 InflateException ie = new InflateException(attrs.getPositionDescription()
380 ie.initCause(e);
381 throw ie;
387 InflateException ie = new InflateException(attrs.getPositionDescription()
390 ie.initCause(e);
391 throw ie;
430 InflateException ie = new InflateException(attrs
433 ie.initCause(e);
434 throw ie;
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUCache.java91 for (AnqpInformationElement ie : elements) {
92 if (ie.getElementId() == AnqpInformationElement.HS_OSU_PROVIDERS
93 && ie.getVendorId() == AnqpInformationElement.HOTSPOT20_VENDOR_ID) {
97 ByteBuffer.wrap(ie.getPayload()).order(ByteOrder.LITTLE_ENDIAN));
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java52 } catch (InterruptedException ie) {
124 } catch (InterruptedException ie) {

Completed in 609 milliseconds

1234