HomeSort by relevance Sort by last modified time
    Searched defs:Section (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
readelf.s 1 There are .* section headers, starting at offset .*:
3 Section Headers:
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFCompileUnit.h 19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section,
24 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
27 static const DWARFSectionKind Section = DW_SECT_INFO;
DWARFTypeUnit.h 22 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section,
27 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
33 static const DWARFSectionKind Section = DW_SECT_TYPES;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Section.py 2 # section base class
24 ## section base class
27 class Section (SectionClassObject):
93 # @param ModuleName Which module this section belongs to
94 # @param SecNum Index of section
95 # @param KeyStringList Filter for inputs of section generation
96 # @param FfsInf FfsInfStatement object that contains this section data
104 # Generate compressed section
114 if FileType in Section.SectFileType.keys() :
122 Suffix = Section.SectionType.get(FileType)
    [all...]
  /external/swiftshader/src/Common/
Configurator.hpp 55 struct Section
61 std::vector<Section> sections;
  /prebuilts/go/darwin-x86/src/debug/pe/
section.go 14 // SectionHeader32 represents real PE COFF section header.
28 // fullName finds real name of section sh. Normally name is stored
45 // Each section contains its own relocation list.
58 return nil, fmt.Errorf("fail to seek to %q section relocations: %v", sh.Name, err)
63 return nil, fmt.Errorf("fail to read section relocations: %v", err)
83 // Section provides access to PE COFF section.
84 type Section struct {
98 // Data reads and returns the contents of the PE section s.
99 func (s *Section) Data() ([]byte, error)
    [all...]
file.go 23 Sections []*Section
141 f.Sections = make([]*Section, f.FileHeader.NumberOfSections)
151 s := new(Section)
195 func getString(section []byte, start int) (string, bool) {
196 if start < 0 || start >= len(section) {
200 for end := start; end < len(section); end++ {
201 if section[end] == 0 {
202 return string(section[start:end]), true
208 // Section returns the first section with the given name, or nil if no suc
    [all...]
  /prebuilts/go/linux-x86/src/debug/pe/
section.go 14 // SectionHeader32 represents real PE COFF section header.
28 // fullName finds real name of section sh. Normally name is stored
45 // Each section contains its own relocation list.
58 return nil, fmt.Errorf("fail to seek to %q section relocations: %v", sh.Name, err)
63 return nil, fmt.Errorf("fail to read section relocations: %v", err)
83 // Section provides access to PE COFF section.
84 type Section struct {
98 // Data reads and returns the contents of the PE section s.
99 func (s *Section) Data() ([]byte, error)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DecClassObject.py 34 Section = {TAB_UNKNOWN.upper() : MODEL_UNKNOWN,
114 self.RecordSet[Section[Key]] = []
184 # Find a new section tab
185 # First insert previous section items
186 # And then parse the content of the new section
190 # Insert items data of previous section
192 Model = Section[CurrentSection.upper()]
196 # Parse the new section
210 EdkLogger.error("Parser", PARSER_ERROR, "Different section names '%s' and '%s' are found in one section definition, this is not allowed." % (CurrentSection, ItemList[0]), File=Filename, Line=LineNo, Rai (…)
    [all...]
  /device/linaro/bootloader/edk2/CorebootModulePkg/SecCore/
FindPeiCore.c 42 EFI_COMMON_SECTION_HEADER *Section;
97 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
99 if (IS_SECTION2 (Section)) {
100 Size = SECTION2_SIZE (Section);
105 Size = SECTION_SIZE (Section);
119 if (Section->Type == EFI_SECTION_PE32 || Section->Type == EFI_SECTION_TE) {
121 if (IS_SECTION2 (Section)) {
122 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER2));
124 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER));
    [all...]
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspInitPei/
FindPeiCore.c 42 EFI_COMMON_SECTION_HEADER *Section;
97 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
99 if (IS_SECTION2 (Section)) {
100 Size = SECTION2_SIZE (Section);
105 Size = SECTION_SIZE (Section);
119 if (Section->Type == EFI_SECTION_PE32 || Section->Type == EFI_SECTION_TE) {
121 if (IS_SECTION2 (Section)) {
122 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER2));
124 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER));
    [all...]
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspWrapperSecCore/
FindPeiCore.c 42 EFI_COMMON_SECTION_HEADER *Section;
97 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
99 if (IS_SECTION2 (Section)) {
100 Size = SECTION2_SIZE (Section);
105 Size = SECTION_SIZE (Section);
119 if (Section->Type == EFI_SECTION_PE32 || Section->Type == EFI_SECTION_TE) {
121 if (IS_SECTION2 (Section)) {
122 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER2));
124 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER));
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Dxe/
MeasureBootPeCoff.c 60 EFI_IMAGE_SECTION_HEADER *Section;
260 // 12. Using the 'PointerToRawData' in the referenced section headers as
262 // words, sort the section headers according to the disk-file offset of
263 // the section.
265 Section = (EFI_IMAGE_SECTION_HEADER *) (
274 while ((Pos > 0) && (Section->PointerToRawData < SectionHeader[Pos - 1].PointerToRawData)) {
278 CopyMem (&SectionHeader[Pos], Section, sizeof(EFI_IMAGE_SECTION_HEADER));
279 Section += 1;
283 // 13. Walk through the sorted table, bring the corresponding section
284 // into memory, and hash the entire section (using the 'SizeOfRawData'
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/
MeasureBootPeCoff.c 60 EFI_IMAGE_SECTION_HEADER *Section;
260 // 12. Using the 'PointerToRawData' in the referenced section headers as
262 // words, sort the section headers according to the disk-file offset of
263 // the section.
265 Section = (EFI_IMAGE_SECTION_HEADER *) (
274 while ((Pos > 0) && (Section->PointerToRawData < SectionHeader[Pos - 1].PointerToRawData)) {
278 CopyMem (&SectionHeader[Pos], Section, sizeof(EFI_IMAGE_SECTION_HEADER));
279 Section += 1;
283 // 13. Walk through the sorted table, bring the corresponding section
284 // into memory, and hash the entire section (using the 'SizeOfRawData'
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/SecCore/
FindPeiCore.c 42 EFI_COMMON_SECTION_HEADER *Section;
97 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
99 if (IS_SECTION2 (Section)) {
100 Size = SECTION2_SIZE (Section);
105 Size = SECTION_SIZE (Section);
119 if (Section->Type == EFI_SECTION_PE32 || Section->Type == EFI_SECTION_TE) {
121 if (IS_SECTION2 (Section)) {
122 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER2));
124 *SecCoreImageBase = (PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) Section + sizeof (EFI_COMMON_SECTION_HEADER));
    [all...]
  /external/llvm/lib/MC/
ConstantPools.cpp 50 ConstantPool *AssemblerConstantPools::getConstantPool(MCSection *Section) {
51 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section);
59 AssemblerConstantPools::getOrCreateConstantPool(MCSection *Section) {
60 return ConstantPools[Section];
63 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section,
66 Streamer.SwitchSection(Section);
74 MCSection *Section = CPI.first;
77 emitConstantPool(Streamer, Section, CP);
82 MCSection *Section = Streamer.getCurrentSection().first;
83 if (ConstantPool *CP = getConstantPool(Section)) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCSymbol.cpp 16 // Sentinel value for the absolute pseudo section.
61 // Variables should always be marked as in the same "section" as the value.
62 const MCSection *Section = Value->FindAssociatedSection();
63 if (Section) {
64 setSection(*Section);
  /frameworks/base/cmds/incidentd/src/
Section.h 31 class Section
37 Section(int id);
38 virtual ~Section();
46 * Section that reads in a file.
48 class FileSection : public Section
63 class WorkerThreadSection : public Section
75 * Section that forks and execs a command, and puts stdout as the section.
77 class CommandSection : public Section
90 * Section that calls dumpsys on a system service
    [all...]
  /prebuilts/go/darwin-x86/src/debug/plan9obj/
file.go 29 Sections []*Section
33 // A SectionHeader represents a single Plan 9 a.out section header.
42 // A Section represents a single section in a Plan 9 a.out file.
43 type Section struct {
56 // Data reads and returns the contents of the Plan 9 a.out section.
57 func (s *Section) Data() ([]byte, error) {
66 // Open returns a new ReadSeeker reading the Plan 9 a.out section.
67 func (s *Section) Open() io.ReadSeeker { return io.NewSectionReader(s.sr, 0, 1<<63-1) }
69 // A Symbol represents an entry in a Plan 9 a.out symbol table section
    [all...]
  /prebuilts/go/linux-x86/src/debug/plan9obj/
file.go 29 Sections []*Section
33 // A SectionHeader represents a single Plan 9 a.out section header.
42 // A Section represents a single section in a Plan 9 a.out file.
43 type Section struct {
56 // Data reads and returns the contents of the Plan 9 a.out section.
57 func (s *Section) Data() ([]byte, error) {
66 // Open returns a new ReadSeeker reading the Plan 9 a.out section.
67 func (s *Section) Open() io.ReadSeeker { return io.NewSectionReader(s.sr, 0, 1<<63-1) }
69 // A Symbol represents an entry in a Plan 9 a.out symbol table section
    [all...]
  /external/google-breakpad/src/common/
test_assembler.h 74 // section. As long as all the labels a section refers to are defined
76 // labels freely in that section's construction.
247 // A section is a sequence of bytes, constructed by appending bytes
253 // If you need to append a value to a section that is not convenient
255 // label's value to the section, and then set the label's value
257 // known, the section class takes care of updating all previously
260 // Once all the labels to which a section refers have had their
261 // values determined, you can get a copy of the section's contents
264 // Note that there is no specified "start of section" label. This i
    [all...]
  /external/google-breakpad/src/processor/
synth_minidump.cc 40 Section::Section(const Dump &dump)
41 : test_assembler::Section(dump.endianness()) { }
43 void Section::CiteLocationIn(test_assembler::Section *section) const {
45 (*section).D32(size_).D32(file_offset_);
47 (*section).D32(0).D32(0);
50 void Stream::CiteStreamIn(test_assembler::Section *section) const
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 56 auto Section = *SectionOrErr;
83 DEBUG(dbgs() << "\t\tIn Section " << SectionID << " Offset " << Offset
88 if (Section == Obj.section_end()) {
93 findOrEmitSection(Obj, *Section, Section->isText(), ObjSectionToID))
133 const auto Section = Sections[RE.SectionID];
134 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
160 // NOTE: use Section[0].getLoadAddress() as an approximation of ImageBase
180 Result = Result - Section.getLoadAddress() + RE.Addend - 4 - RE.Offset;
193 // 16-bit section index of the section that contains the target
    [all...]