Home
last modified time | relevance | path

Searched refs:section_end (Results 1 – 25 of 26) sorted by relevance

12

/external/autotest/client/cros/faft/utils/
Dsaft_flashrom_util.py122 for section_base, section_end in ost:
123 if section_base <= base or section_end + 1 < section_base:
127 section_base, section_end))
128 base = section_end
/external/google-breakpad/src/common/linux/
Dfile_id.cc64 const void* section_end = reinterpret_cast<const char*>(section) + length; in ElfClassBuildIDNoteIdentifier() local
66 while (reinterpret_cast<const void *>(note_header) < section_end) { in ElfClassBuildIDNoteIdentifier()
74 if (reinterpret_cast<const void *>(note_header) >= section_end || in ElfClassBuildIDNoteIdentifier()
/external/llvm/include/llvm/Object/
DELFObjectFile.h328 section_iterator section_end() const override;
542 return section_end(); in getSymbolSection()
659 return section_end(); in getRelocatedSection()
664 return section_end(); in getRelocatedSection()
824 section_iterator ELFObjectFile<ELFT>::section_end() const { in section_end() function
825 return section_iterator(SectionRef(toDRI(EF.section_end()), this)); in section_end()
DELF.h113 const Elf_Shdr *section_end() const;
115 return makeArrayRef(section_begin(), section_end()); in sections()
400 const typename ELFFile<ELFT>::Elf_Shdr *ELFFile<ELFT>::section_end() const { in section_end() function
DObjectFile.h253 virtual section_iterator section_end() const = 0;
257 return section_iterator_range(section_begin(), section_end()); in sections()
DMachO.h259 section_iterator section_end() const override;
DCOFF.h758 section_iterator section_end() const override;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp254 section_iterator SI = Obj.section_end(); in loadObjectImpl()
260 if (SI == Obj.section_end()) in loadObjectImpl()
292 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in loadObjectImpl()
424 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeTotalAllocSize()
514 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeSectionStubBufSize()
DRuntimeDyldMachO.cpp74 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA()
164 section_iterator SE = Obj.section_end(); in getSectionByAddress()
DRuntimeDyldELF.cpp829 for (section_iterator si = Obj.section_begin(), se = Obj.section_end(); in findOPDEntrySection()
832 if (RelSecI == Obj.section_end()) in findOPDEntrySection()
876 section_iterator TSI = Obj.section_end(); in findOPDEntrySection()
881 assert(TSI != Obj.section_end() && "TSI should refer to a valid section"); in findOPDEntrySection()
1248 if (si == Obj.section_end()) in processRelocationRef()
1872 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in finalizeLoad()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOI386.h167 assert(SAI != Obj.section_end() && "Can't find section for address A"); in processSECTDIFFRelocation()
181 assert(SBI != Obj.section_end() && "Can't find section for address B"); in processSECTDIFFRelocation()
DRuntimeDyldMachOARM.h248 assert(SAI != MachO.section_end() && "Can't find section for address A"); in processHALFSECTDIFFRelocation()
262 assert(SBI != MachO.section_end() && "Can't find section for address B"); in processHALFSECTDIFFRelocation()
DRuntimeDyldCOFFX86_64.h125 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
DRuntimeDyldCOFFI386.h88 if (Section == Obj.section_end()) { in processRelocationRef()
DRuntimeDyldCOFFThumb.h85 if (Section == Obj.section_end()) { in processRelocationRef()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp231 Object.section_end()); in begin()
234 return SectionFilterIterator(Predicate, Object.section_end(), in end()
235 Object.section_end()); in end()
997 if (Sec2 != Obj->section_end()) in DisassembleObject()
1018 if (SecI == Obj->section_end()) in DisassembleObject()
1416 if (Type == SymbolRef::ST_Debug && Section != o->section_end()) { in PrintSymbolTable()
1459 } else if (Section == o->section_end()) { in PrintSymbolTable()
/external/llvm/tools/dsymutil/
DMachODebugMapParser.cpp440 section_iterator Section = MainBinary.section_end(); in loadMainBinarySymbols()
466 if (Section == MainBinary.section_end() || Section->isText()) in loadMainBinarySymbols()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp737 if (RelocatedSection == Obj.section_end()) in DWARFContextInMemory()
793 object::section_iterator RSec = Obj.section_end(); in DWARFContextInMemory()
839 if (L != nullptr && RSec != Obj.section_end()) { in DWARFContextInMemory()
/external/llvm/lib/Object/
DObject.cpp95 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0; in LLVMIsSectionIteratorAtEnd()
DMachOObjectFile.cpp581 return section_end(); in getSymbolSection()
1135 section_iterator MachOObjectFile::section_end() const { in section_end() function in MachOObjectFile
2052 return *section_end(); in getAnyRelocationSection()
2055 return *section_end(); in getAnyRelocationSection()
DCOFFObjectFile.cpp241 return section_end(); in getSymbolSection()
818 section_iterator COFFObjectFile::section_end() const { in section_end() function in COFFObjectFile
/external/llvm/tools/llvm-cxxdump/
Dllvm-cxxdump.cpp174 if (Sec2 != Obj->section_end()) in dumpCXXData()
193 if (SecI == Obj->section_end()) in dumpCXXData()
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp550 if (SecI != Obj->section_end()) { in printRelocation()
622 if (SecI != Obj->section_end()) in printSymbol()
/external/v8/src/wasm/
Dmodule-decoder.cc123 inline const byte* section_end() const { return section_end_; } in section_end() function in v8::internal::wasm::__anon237773a90111::WasmSectionIterator
/external/llvm/tools/llvm-nm/
Dllvm-nm.cpp754 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()

12