OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Sect
(Results
1 - 4
of
4
) sorted by null
/external/llvm/tools/obj2yaml/
coff2yaml.cpp
55
const object::coff_section *
Sect
= Obj.getCOFFSection(Section);
57
Sec.Name =
Sect
->Name; // FIXME: check the null termination!
58
uint32_t Characteristics =
Sect
->Characteristics;
63
Obj.getSectionContents(
Sect
, sectionData);
/external/llvm/tools/llvm-readobj/
MachODumper.cpp
162
MachO::section
Sect
= Obj->getSection(Sec);
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.Reserved1 =
Sect
.reserved1;
171
Section.Reserved2 =
Sect
.reserved2
[
all
...]
/external/llvm/tools/macho-dump/
macho-dump.cpp
136
MachO::section
Sect
= Obj.getSection(LCI, i);
137
DumpSectionData(Obj, i, StringRef(
Sect
.sectname, 16),
138
StringRef(
Sect
.segname, 16),
Sect
.addr,
139
Sect
.size,
Sect
.offset,
Sect
.align,
140
Sect
.reloff,
Sect
.nreloc,
Sect
.flags
[
all
...]
/external/llvm/lib/Object/
MachOObjectFile.cpp
418
MachO::section_64
Sect
= O->getSection64(Sec);
419
return
Sect
.flags;
421
MachO::section
Sect
= O->getSection(Sec);
422
return
Sect
.flags;
678
MachO::section_64
Sect
= getSection64(Sec);
679
Res =
Sect
.addr;
681
MachO::section
Sect
= getSection(Sec);
682
Res =
Sect
.addr;
690
MachO::section_64
Sect
= getSection64(Sec);
691
Res =
Sect
.size
[
all
...]
Completed in 237 milliseconds