/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | InformationElementUtil.java | 59 InformationElement ie = new InformationElement(); in parseInformationElements() local 60 ie.id = eid; in parseInformationElements() 61 ie.bytes = new byte[elementLength]; in parseInformationElements() 62 data.get(ie.bytes); in parseInformationElements() 63 infoElements.add(ie); in parseInformationElements() 74 public void from(InformationElement ie) { in from() argument 75 if (ie.id != InformationElement.EID_BSS_LOAD) { in from() 76 throw new IllegalArgumentException("Element id is not BSS_LOAD, : " + ie.id); in from() 78 if (ie.bytes.length != 5) { in from() 80 + ie.bytes.length); in from() [all …]
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/ |
D | InformationElementUtilTest.java | 247 InformationElement ie = new InformationElement(); in buildCapabilities_rsnElement() local 248 ie.id = InformationElement.EID_RSN; in buildCapabilities_rsnElement() 249 ie.bytes = new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x0F, in buildCapabilities_rsnElement() 256 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_rsnElement() 272 InformationElement ie = new InformationElement(); in buildCapabilities_wpa1Element() local 273 ie.id = InformationElement.EID_VSA; in buildCapabilities_wpa1Element() 274 ie.bytes = new byte[] { (byte) 0x00, (byte) 0x50, (byte) 0xF2, (byte) 0x01, in buildCapabilities_wpa1Element() 282 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_wpa1Element() 301 InformationElement ie = new InformationElement(); in buildCapabilities_nonRsnWpa1Element_privacySet() local 302 ie.id = InformationElement.EID_VSA; in buildCapabilities_nonRsnWpa1Element_privacySet() [all …]
|
D | ScanDetailUtilTest.java | 89 InformationElement ie = new InformationElement(); in createIE() local 90 ie.id = id; in createIE() 91 ie.bytes = bytes; in createIE() 92 return ie; in createIE()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | DrawableInflater.java | 194 final InflateException ie = new InflateException( in inflateFromClass() 196 ie.initCause(e); in inflateFromClass() 197 throw ie; in inflateFromClass() 200 final InflateException ie = new InflateException( in inflateFromClass() 202 ie.initCause(e); in inflateFromClass() 203 throw ie; in inflateFromClass() 206 final InflateException ie = new InflateException( in inflateFromClass() 208 ie.initCause(e); in inflateFromClass() 209 throw ie; in inflateFromClass() 211 final InflateException ie = new InflateException( in inflateFromClass() [all …]
|
/frameworks/compile/mclinker/lib/Script/ |
D | SectionsCmd.cpp | 24 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
|
D | OutputSectDesc.cpp | 35 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
|
D | InputSectDesc.cpp | 51 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()
|
D | RpnExpr.cpp | 35 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
|
D | InputCmd.cpp | 61 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()
|
D | ScriptFile.cpp | 67 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
|
D | Assignment.cpp | 109 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()
|
D | GroupCmd.cpp | 50 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/ |
D | ScanResults.java | 84 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/base/core/java/android/preference/ |
D | GenericInflater.java | 388 InflateException ie = new InflateException(attrs in createItem() 392 ie.initCause(e); in createItem() 393 throw ie; in createItem() 399 InflateException ie = new InflateException(attrs in createItem() 403 ie.initCause(e); in createItem() 404 throw ie; in createItem() 443 InflateException ie = new InflateException(attrs in createItemFromTag() 446 ie.initCause(e); in createItemFromTag() 447 throw ie; in createItemFromTag() 450 InflateException ie = new InflateException(attrs in createItemFromTag() [all …]
|
/frameworks/compile/mclinker/lib/LD/ |
D | BranchIslandFactory.cpp | 46 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()
|
D | StubFactory.cpp | 28 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/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | NetworkDetail.java | 165 for (ScanResult.InformationElement ie : infoElements) { in NetworkDetail() 166 iesFound.add(ie.id); in NetworkDetail() 167 switch (ie.id) { in NetworkDetail() 169 ssidOctets = ie.bytes; in NetworkDetail() 172 bssLoad.from(ie); in NetworkDetail() 175 htOperation.from(ie); in NetworkDetail() 178 vhtOperation.from(ie); in NetworkDetail() 181 interworking.from(ie); in NetworkDetail() 184 roamingConsortium.from(ie); in NetworkDetail() 187 vsa.from(ie); in NetworkDetail() [all …]
|
/frameworks/base/core/java/android/view/ |
D | LayoutInflater.java | 538 final InflateException ie = new InflateException(e.getMessage(), e); in inflate() 539 ie.setStackTrace(EMPTY_STACK_TRACE); in inflate() 540 throw ie; in inflate() 542 final InflateException ie = new InflateException(parser.getPositionDescription() in inflate() 544 ie.setStackTrace(EMPTY_STACK_TRACE); in inflate() 545 throw ie; in inflate() 654 final InflateException ie = new InflateException(attrs.getPositionDescription() in createView() 656 ie.setStackTrace(EMPTY_STACK_TRACE); in createView() 657 throw ie; in createView() 661 final InflateException ie = new InflateException(attrs.getPositionDescription() in createView() [all …]
|
/frameworks/support/v7/preference/src/android/support/v7/preference/ |
D | PreferenceInflater.java | 262 final InflateException ie = new InflateException(attrs in createItem() 264 ie.initCause(e); in createItem() 265 throw ie; in createItem() 301 final InflateException ie = new InflateException(attrs in createItemFromTag() 304 ie.initCause(e); in createItemFromTag() 305 throw ie; in createItemFromTag() 308 final InflateException ie = new InflateException(attrs in createItemFromTag() 311 ie.initCause(e); in createItemFromTag() 312 throw ie; in createItemFromTag()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/ |
D | GenericInflater.java | 377 InflateException ie = new InflateException(attrs.getPositionDescription() in createItem() 380 ie.initCause(e); in createItem() 381 throw ie; in createItem() 387 InflateException ie = new InflateException(attrs.getPositionDescription() in createItem() 390 ie.initCause(e); in createItem() 391 throw ie; in createItem() 430 InflateException ie = new InflateException(attrs in createItemFromTag() 433 ie.initCause(e); in createItemFromTag() 434 throw ie; in createItemFromTag()
|
/frameworks/compile/mclinker/lib/Support/ |
D | TargetRegistry.cpp | 38 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/compile/mclinker/lib/Target/AArch64/ |
D | AArch64PLT.cpp | 108 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/compile/mclinker/lib/Target/ARM/ |
D | ARMPLT.cpp | 103 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/Hexagon/ |
D | HexagonPLT.cpp | 127 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/ |
D | X86PLT.cpp | 168 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()
|