Home
last modified time | relevance | path

Searched refs:ie (Results 1 – 25 of 105) sorted by relevance

12345

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java252 InformationElement ie = new InformationElement(); in buildCapabilities_rsnElement() local
253 ie.id = InformationElement.EID_RSN; in buildCapabilities_rsnElement()
254 ie.bytes = new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x0F, in buildCapabilities_rsnElement()
261 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_rsnElement()
281 InformationElement ie = new InformationElement(); in buildCapabilities_malformedRsnElement() local
282 ie.id = InformationElement.EID_RSN; in buildCapabilities_malformedRsnElement()
283 ie.bytes = new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x0F, in buildCapabilities_malformedRsnElement()
287 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_malformedRsnElement()
306 InformationElement ie = new InformationElement(); in buildCapabilities_wpa1Element() local
307 ie.id = InformationElement.EID_VSA; in buildCapabilities_wpa1Element()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java58 InformationElement ie = new InformationElement(); in parseInformationElements() local
59 ie.id = eid; in parseInformationElements()
60 ie.bytes = new byte[elementLength]; in parseInformationElements()
61 data.get(ie.bytes); in parseInformationElements()
62 infoElements.add(ie); in parseInformationElements()
76 for (InformationElement ie : ies) { in getRoamingConsortiumIE()
77 if (ie.id == InformationElement.EID_ROAMING_CONSORTIUM) { in getRoamingConsortiumIE()
79 roamingConsortium.from(ie); in getRoamingConsortiumIE()
98 for (InformationElement ie : ies) { in getHS2VendorSpecificIE()
99 if (ie.id == InformationElement.EID_VSA) { in getHS2VendorSpecificIE()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawableInflater.java212 final InflateException ie = new InflateException( in inflateFromClass()
214 ie.initCause(e); in inflateFromClass()
215 throw ie; in inflateFromClass()
218 final InflateException ie = new InflateException( in inflateFromClass()
220 ie.initCause(e); in inflateFromClass()
221 throw ie; in inflateFromClass()
224 final InflateException ie = new InflateException( in inflateFromClass()
226 ie.initCause(e); in inflateFromClass()
227 throw ie; in inflateFromClass()
229 final InflateException ie = new InflateException( in inflateFromClass()
[all …]
/frameworks/compile/mclinker/lib/Script/
DSectionsCmd.cpp24 for (iterator it = begin(), ie = end(); it != ie; ++it) { in ~SectionsCmd() local
33 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in dump() local
67 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in activate() local
DOutputSectDesc.cpp35 for (iterator it = begin(), ie = end(); it != ie; ++it) { in ~OutputSectDesc() local
100 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in dump() local
121 ie = m_Epilog.phdrs().end(); in dump() local
122 it != ie; in dump()
159 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in activate() local
DInputSectDesc.cpp51 ie = m_Spec.excludeFiles().end(); in dump() local
52 it != ie; in dump()
61 ie = m_Spec.sections().end(); in dump() local
62 it != ie; in dump()
DRpnExpr.cpp35 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in hasDot() local
44 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in dump() local
DInputCmd.cpp61 ie = m_StringList.end(); in dump() local
62 it != ie; in dump()
94 ie = m_StringList.end(); in activate() local
95 it != ie; in activate()
180 for (InputTree::iterator input = input_begin, ie = m_InputTree.end(); in activate() local
181 input != ie; in activate()
DScriptFile.cpp67 for (iterator it = begin(), ie = end(); it != ie; ++it) { in ~ScriptFile() local
76 for (const_iterator it = begin(), ie = end(); it != ie; ++it) in dump() local
81 for (const_iterator it = begin(), ie = end(); it != ie; ++it) in activate() local
DAssignment.cpp109 for (RpnExpr::iterator it = m_RpnExpr.begin(), ie = m_RpnExpr.end(); in activate() local
110 it != ie; in activate()
146 for (RpnExpr::iterator it = m_RpnExpr.begin(), ie = m_RpnExpr.end(); in activate() local
147 it != ie; in activate()
DStringList.cpp36 for (const_iterator it = begin(), ie = end(); it != ie; ++it) in dump() local
DGroupCmd.cpp50 ie = m_StringList.end(); in dump() local
51 it != ie; in dump()
83 ie = m_StringList.end(); in activate() local
84 it != ie; in activate()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanResults.java84 ScanResult.InformationElement ie = new ScanResult.InformationElement(); in generateSsidIe() local
85 ie.id = ScanResult.InformationElement.EID_SSID; in generateSsidIe()
86 ie.bytes = ssid.getBytes(Charset.forName("UTF-8")); in generateSsidIe()
87 return ie; in generateSsidIe()
110 ScanResult.InformationElement[] ie; in generateNativeResults() local
112 ie = new ScanResult.InformationElement[1]; in generateNativeResults()
113 ie[0] = generateSsidIe(ssid); in generateNativeResults()
115 ie = new ScanResult.InformationElement[0]; in generateNativeResults()
118 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq); in generateNativeResults()
123 ie, anqpLines); in generateNativeResults()
/frameworks/compile/mclinker/lib/LD/
DBranchIslandFactory.cpp46 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie; in group() local
81 for (iterator it = begin(), ie = end(), prev = ie; it != ie; in getIslands() local
91 if ((prev != ie) && (pFragment.getParent() == (*prev).getParent())) { in getIslands()
DStubFactory.cpp28 for (StubPoolType::iterator it = m_StubPool.begin(), ie = m_StubPool.end(); in ~StubFactory() local
29 it != ie; in ~StubFactory()
113 ie = m_StubPool.end(); it != ie; ++it) { in findPrototype() local
122 ie = m_StubPool.end(); it != ie; ++it) { in findPrototype() local
/frameworks/base/core/java/android/preference/
DGenericInflater.java395 InflateException ie = new InflateException(attrs in createItem()
399 ie.initCause(e); in createItem()
400 throw ie; in createItem()
406 InflateException ie = new InflateException(attrs in createItem()
410 ie.initCause(e); in createItem()
411 throw ie; in createItem()
450 InflateException ie = new InflateException(attrs in createItemFromTag()
453 ie.initCause(e); in createItemFromTag()
454 throw ie; in createItemFromTag()
457 InflateException ie = new InflateException(attrs in createItemFromTag()
[all …]
/frameworks/base/services/core/java/com/android/server/rollback/
DAppDataRollbackHelper.java78 } catch (InstallerException ie) { in snapshotAppData()
80 + packageRollbackInfo.getPackageName() + ", userId: " + user, ie); in snapshotAppData()
124 } catch (InstallerException ie) { in restoreAppData()
126 + packageRollbackInfo.getPackageName(), ie); in restoreAppData()
150 } catch (InstallerException ie) { in destroyAppDataSnapshot()
152 + packageRollbackInfo.getPackageName(), ie); in destroyAppDataSnapshot()
259 } catch (InstallerException ie) { in commitPendingBackupAndRestoreForUser()
262 + info.getPackageName() + ", userId: " + userId, ie); in commitPendingBackupAndRestoreForUser()
279 } catch (InstallerException ie) { in commitPendingBackupAndRestoreForUser()
281 + info.getPackageName(), ie); in commitPendingBackupAndRestoreForUser()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java162 for (ScanResult.InformationElement ie : infoElements) { in NetworkDetail()
163 iesFound.add(ie.id); in NetworkDetail()
164 switch (ie.id) { in NetworkDetail()
166 ssidOctets = ie.bytes; in NetworkDetail()
169 bssLoad.from(ie); in NetworkDetail()
172 htOperation.from(ie); in NetworkDetail()
175 vhtOperation.from(ie); in NetworkDetail()
178 interworking.from(ie); in NetworkDetail()
181 roamingConsortium.from(ie); in NetworkDetail()
184 vsa.from(ie); in NetworkDetail()
[all …]
/frameworks/compile/mclinker/lib/Support/
DTargetRegistry.cpp38 for (iterator target = begin(), ie = end(); target != ie; ++target) { in lookupTarget() local
71 ie = mcld::TargetRegistry::end(); in lookupTarget() local
72 it != ie; in lookupTarget()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/model/
DBackgroundTaskLoader.java102 } catch (InterruptedException ie) { in run()
103 ie.printStackTrace(); in run()
130 } catch (InterruptedException ie) { in run()
131 ie.printStackTrace(); in run()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.cpp103 ARMPLT::iterator ie = m_pSectionData->end(); in applyPLT1() local
104 assert(it != ie && "FragmentList is empty, applyPLT1 failed!"); in applyPLT1()
116 while (it != ie) { in applyPLT1()
151 ARMPLT::iterator ie = end(); in emit() local
152 while (it != ie) { in emit()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64PLT.cpp108 AArch64PLT::iterator ie = m_pSectionData->end(); in applyPLT1() local
109 assert(it != ie && "FragmentList is empty, applyPLT1 failed!"); in applyPLT1()
122 while (it != ie) { in applyPLT1()
159 AArch64PLT::iterator ie = end(); in emit() local
160 while (it != ie) { in emit()
/frameworks/base/core/java/android/view/
DLayoutInflater.java702 final InflateException ie = new InflateException(e.getMessage(), e); in inflate()
703 ie.setStackTrace(EMPTY_STACK_TRACE); in inflate()
704 throw ie; in inflate()
706 final InflateException ie = new InflateException( in inflate()
709 ie.setStackTrace(EMPTY_STACK_TRACE); in inflate()
710 throw ie; in inflate()
865 final InflateException ie = new InflateException( in createView()
868 ie.setStackTrace(EMPTY_STACK_TRACE); in createView()
869 throw ie; in createView()
873 final InflateException ie = new InflateException( in createView()
[all …]
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonPLT.cpp127 HexagonPLT::iterator ie = m_pSectionData->end(); in applyPLT1() local
128 assert(it != ie && "FragmentList is empty, applyPLT1 failed!"); in applyPLT1()
141 while (it != ie) { in applyPLT1()
180 HexagonPLT::iterator ie = end(); in emit() local
181 while (it != ie) { in emit()
/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.cpp168 X86PLT::iterator ie = m_pSectionData->end(); in applyPLT1() local
169 assert(it != ie && "FragmentList is empty, applyPLT1 failed!"); in applyPLT1()
186 while (it != ie) { in applyPLT1()
251 X86PLT::iterator ie = m_pSectionData->end(); in applyPLT1() local
252 assert(it != ie && "FragmentList is empty, applyPLT1 failed!"); in applyPLT1()
273 while (it != ie) { in applyPLT1()

12345