Searched defs:Section (Results 1 - 25 of 87) sorted by last modified time

1234

/external/valgrind/main/perf/
H A Dtinycc.c158 Elf32_Off e_shoff; /* Section header table file offset */
163 Elf32_Half e_shentsize; /* Section header table entry size */
164 Elf32_Half e_shnum; /* Section header table entry count */
165 Elf32_Half e_shstrndx; /* Section header string table index */
176 Elf64_Off e_shoff; /* Section header table file offset */
181 Elf64_Half e_shentsize; /* Section header table entry size */
182 Elf64_Half e_shnum; /* Section header table entry count */
183 Elf64_Half e_shstrndx; /* Section header string table index */
298 /* Section header. */
302 Elf32_Word sh_name; /* Section nam
2195 typedef struct Section { struct
2215 } Section; typedef in typeref:struct:Section
[all...]
/external/valgrind/main/VEX/unused/
H A Dlinker.c58 Section; typedef in typeref:struct:_Section
94 Section* sections;
837 fprintf(stderr, "Section header string table is section %d\n",
1082 /* Section 0 is the undefined section, hence > and not >=. */
/external/smack/src/org/xbill/DNS/
H A DSection.java11 public final class Section { class
35 private static Mnemonic sections = new Mnemonic("Message Section",
61 Section() {} method in class:Section
63 /** Converts a numeric Section into an abbreviation String */
69 /** Converts a numeric Section into a full description String */
77 * Converts a numeric Section into a full description String for an update
86 /** Converts a String representation of a Section into its numeric value */
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmstypes.c3608 cmsBool ReadCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, cmsUInt32Number* SizeOfTag, const char* Section) argument
3630 cmsMLUsetASCII(mlu, "PS", Section, Text);
3638 cmsBool WriteCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, const char* Section) argument
3643 TextSize = cmsMLUgetASCII(mlu, "PS", Section, NULL, 0);
3648 if (cmsMLUgetASCII(mlu, "PS", Section, Text, TextSize) == 0) return FALSE;
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp99 Allocation &Section = UnmappedSections[i]; local
100 if (Section.IsCode) {
101 unsigned Size = Section.MB.size();
102 unsigned Align = Section.Alignment;
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
116 Allocation &Section = UnmappedSections[i]; local
117 if (!Section.IsCode) {
118 unsigned Size = Section.MB.size();
119 unsigned Align = Section.Alignment;
126 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffse
157 const Allocation &Section = I->second; local
[all...]
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp434 << " Size Line Section\n";
573 const coff_section *Section = Obj.getCOFFSection(*SecI); local
574 Characteristics = Section->Characteristics;
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp202 const coff_section *Section; local
203 if (std::error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr))
205 if (std::error_code EC = Obj->getSectionContents(Section, Contents))
286 << "\n Critical Section Default Timeout: " << LoadConf->CriticalSectionDefaultTimeout
383 for (const SectionRef &Section : Obj->sections()) {
385 if (error(Section.getName(Name)))
390 const coff_section *Pdata = Obj->getCOFFSection(Section);
391 for (const RelocationRef &Reloc : Section.relocations())
H A Dllvm-objdump.cpp400 for (const SectionRef &Section : Obj->sections()) {
401 section_iterator Sec2 = Section.getRelocatedSection();
403 SectionRelocMap[*Sec2].push_back(Section);
406 for (const SectionRef &Section : Obj->sections()) {
408 if (error(Section.isText(Text)))
414 if (error(Section.getAddress(SectionAddr)))
418 if (error(Section.getSize(SectSize)))
425 if (!error(Section.containsSymbol(Symbol, contains)) && contains) {
448 for (const SectionRef &RelocSec : SectionRelocMap[Section]) {
460 DataRefImpl DR = Section
741 section_iterator Section = o->section_end(); local
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMAttributeParser.cpp22 { "Tag_Section", ARMBuildAttrs::Section },
622 case ARMBuildAttrs::Section:
646 void ARMAttributeParser::Parse(ArrayRef<uint8_t> Section) { argument
650 while (Offset < Section.size()) {
652 *reinterpret_cast<const support::ulittle32_t*>(Section.data() + Offset);
654 SW.startLine() << "Section " << ++SectionNumber << " {\n";
657 ParseSubsection(Section.data() + Offset, SectionLength);
H A DARMEHABIPrinter.h327 ErrorOr<StringRef> FunctionAtAddress(unsigned Section, uint64_t Address) const;
347 ErrorOr<StringRef> PrinterContext<ET>::FunctionAtAddress(unsigned Section, argument
351 if (SI->st_shndx == Section && SI->st_value == Address &&
399 /// ARM EHABI Section 6.2 - The generic model
411 /// ARM EHABI Section 6.3 - The ARM-defined compact model
466 /// ARM EHABI Section 5 - Index Table Entries
H A DARMWinEHPrinter.cpp188 for (const auto &Section : COFF.sections()) {
192 if (std::error_code EC = Section.getAddress(Address))
194 if (std::error_code EC = Section.getSize(Size))
198 return Section;
224 const SectionRef &Section,
226 for (const auto &Relocation : Section.relocations()) {
522 const SectionRef &Section,
525 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
529 if (Section.getAddress(SectionVA))
581 getRelocatedSymbol(COFF, Section, HandlerOffse
223 getRelocatedSymbol(const COFFObjectFile &, const SectionRef &Section, uint64_t Offset) argument
652 ErrorOr<SectionRef> Section = local
662 dumpPackedEntry(const object::COFFObjectFile &COFF, const SectionRef Section, uint64_t Offset, unsigned Index, const RuntimeFunction &RF) argument
699 dumpProcedureDataEntry(const COFFObjectFile &COFF, const SectionRef Section, unsigned Index, ArrayRef<uint8_t> Contents) argument
713 dumpProcedureData(const COFFObjectFile &COFF, const SectionRef Section) argument
[all...]
H A DCOFFDumper.cpp61 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc);
68 void printCodeViewLineTables(const SectionRef &Section);
72 std::error_code resolveSymbol(const coff_section *Section, uint64_t Offset,
74 std::error_code resolveSymbolName(const coff_section *Section,
103 std::error_code COFFDumper::resolveSymbol(const coff_section *Section, argument
105 const auto &Relocations = RelocMap[Section];
121 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section, argument
125 if (std::error_code EC = resolveSymbol(Section, Offset, Symbol))
292 { "Section" , COFF::IMAGE_SYM_CLASS_SECTION },
325 const coff_section *Section local
436 printCodeViewLineTables(const SectionRef &Section) argument
601 const coff_section *Section = Obj->getCOFFSection(Sec); local
680 printRelocation(const SectionRef &Section, const RelocationRef &Reloc) argument
726 const coff_section *Section; local
[all...]
H A DELFDumper.cpp384 { "Section", ELF::STT_SECTION },
573 const Elf_Shdr *Section = &*SecI; local
574 StringRef Name = errorOrDefault(Obj->getSectionName(Section));
576 DictScope SectionD(W, "Section");
578 W.printNumber("Name", Name, Section->sh_name);
580 getElfSectionType(Obj->getHeader()->e_machine, Section->sh_type),
581 Section->sh_type);
582 W.printFlags ("Flags", Section->sh_flags, makeArrayRef(ElfSectionFlags));
583 W.printHex ("Address", Section->sh_addr);
584 W.printHex ("Offset", Section
[all...]
H A DMachODumper.cpp131 { "Section", 0xE }
160 MachOSection &Section) {
163 Section.Address = Sect.addr;
164 Section.Size = Sect.size;
165 Section.Offset = Sect.offset;
166 Section.Alignment = Sect.align;
167 Section.RelocationTableOffset = Sect.reloff;
168 Section.NumRelocationTableEntries = Sect.nreloc;
169 Section.Flags = Sect.flags;
170 Section
158 getSection(const MachOObjectFile *Obj, DataRefImpl Sec, MachOSection &Section) argument
[all...]
H A DWin64EHDumper.cpp116 const coff_section *Section, uint64_t Offset,
123 if (Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData) ||
138 const coff_section *Section,
144 Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData))
161 const coff_section *Section,
165 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress));
167 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress));
169 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset));
232 void Dumper::printUnwindInfo(const Context &Ctx, const coff_section *Section, argument
266 formatSymbol(Ctx, Section, LSDAOffse
115 formatSymbol(const Dumper::Context &Ctx, const coff_section *Section, uint64_t Offset, uint32_t Displacement) argument
137 resolveRelocation(const Dumper::Context &Ctx, const coff_section *Section, uint64_t Offset, const coff_section *&ResolvedSection, uint64_t &ResolvedAddress) argument
160 printRuntimeFunctionEntry(const Context &Ctx, const coff_section *Section, uint64_t Offset, const RuntimeFunction &RF) argument
276 printRuntimeFunction(const Context &Ctx, const coff_section *Section, uint64_t SectionOffset, const RuntimeFunction &RF) argument
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp133 const ELFYAML::RawContentSection &Section,
136 const ELFYAML::RelocationSection &Section,
297 if (!Sym.Section.empty()) {
299 if (SN2I.lookup(Sym.Section, Index)) {
300 errs() << "error: Unknown section referenced: '" << Sym.Section
316 const ELFYAML::RawContentSection &Section,
318 assert(Section.Size >= Section.Content.binary_size() &&
319 "Section size and section content are inconsistent");
321 Section
315 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::RawContentSection &Section, ContiguousBlobAccumulator &CBA) argument
330 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, ContiguousBlobAccumulator &CBA) argument
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c888 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
889 LLVMSetSection(Global, String_val(Section));
/external/llvm/bindings/python/llvm/
H A Dobject.py19 Section, Symbol, and Relocation, respectively.
30 relocations, call get_relocations() on a Section instance.
40 To aid working around this limitation, each Section, Symbol, and Relocation
53 # This is OK. Each Section is only accessed inside its own iteration slot.
96 "Section",
126 This is a generator for llvm.object.Section instances.
137 last = Section(sections)
179 class Section(LLVMObject): class in inherits:LLVMObject
185 Section instances can currently only be created from an ObjectFile
200 raise Exception('Section instanc
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py4 from ..object import Section namespace
21 assert isinstance(section, Section)
54 assert isinstance(section, Section)
/external/llvm/include/llvm/IR/
H A DGlobalObject.h36 std::string Section; // Section to emit this into, empty means default member in class:llvm::GlobalObject
45 const char *getSection() const { return Section.c_str(); }
/external/llvm/include/llvm/MC/
H A DMCAssembler.h584 const MCSection *Section; member in class:llvm::MCSectionData
620 MCSectionData(const MCSection &Section, MCAssembler *A = nullptr);
622 const MCSection &getSection() const { return *Section; }
994 void writeSectionData(const MCSectionData *Section,
1076 /// @name Section List Access
1187 MCSectionData &getSectionData(const MCSection &Section) const {
1188 MCSectionData *Entry = SectionMap.lookup(&Section);
1193 MCSectionData &getOrCreateSectionData(const MCSection &Section, argument
1195 MCSectionData *&Entry = SectionMap[&Section];
1199 Entry = new MCSectionData(Section, thi
[all...]
H A DMCContext.h248 /// @name Section Management
254 StringRef Section,
259 StringRef Section,
262 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
265 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
268 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
272 void renameELFSection(const MCSectionELF *Section, StringRef Name);
276 const MCSectionCOFF *getCOFFSection(StringRef Section,
281 const MCSectionCOFF *getCOFFSection(StringRef Section,
285 const MCSectionCOFF *getCOFFSection(StringRef Section);
258 getMachOSection(StringRef Segment, StringRef Section, unsigned TypeAndAttributes, SectionKind K) argument
[all...]
H A DMCSectionCOFF.h47 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
49 : MCSection(SV_COFF, K), SectionName(Section),
H A DMCSectionELF.h51 MCSectionELF(StringRef Section, unsigned type, unsigned flags, argument
53 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),

Completed in 2156 milliseconds

1234