Searched refs:sections (Results 1 - 9 of 9) sorted by relevance

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/
H A DJELFRelocObject.java63 private static ElfSection createByteSection(ArrayList<ElfSection> sections, argument
72 hasRelocs, align, sections.size());
74 sections.add(sect);
79 private void createByteSection(ArrayList<ElfSection> sections, argument
99 sect = createByteSection(sections, c.getContainerName(),
105 private void createCodeSection(ArrayList<ElfSection> sections, CodeContainer c) { argument
106 createByteSection(sections, c, Elf64_Shdr.SHF_ALLOC | Elf64_Shdr.SHF_EXECINSTR);
109 private void createReadOnlySection(ArrayList<ElfSection> sections, ReadOnlyDataContainer c) { argument
110 createByteSection(sections, c, Elf64_Shdr.SHF_ALLOC);
113 private void createReadWriteSection(ArrayList<ElfSection> sections, ByteContaine argument
275 createElfRelocTable(ArrayList<ElfSection> sections, Map<Symbol, List<Relocation>> relocationTable) argument
367 createElfRelocSections(ArrayList<ElfSection> sections, ElfRelocTable elfRelocTable, int symtabsectidx) argument
[all...]
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/
H A DJMachORelocObject.java85 private void createByteSection(ArrayList<MachOSection> sections, argument
99 sections.add(sect);
102 c.setSectionId(sections.size() - 1);
108 private void createCodeSection(ArrayList<MachOSection> sections, CodeContainer c) { argument
109 createByteSection(sections, c, /* c.getContainerName() */ "__text", "__TEXT",
114 private void createReadOnlySection(ArrayList<MachOSection> sections, ReadOnlyDataContainer c) { argument
115 createByteSection(sections, c, c.getContainerName(), "__TEXT",
119 private void createReadWriteSection(ArrayList<MachOSection> sections, ByteContainer c) { argument
120 createByteSection(sections, c, c.getContainerName(), "__DATA", section_64.S_REGULAR);
140 ArrayList<MachOSection> sections
273 createMachOSymbolTables(ArrayList<MachOSection> sections, Collection<Symbol> symbols) argument
326 createMachORelocTable(ArrayList<MachOSection> sections, Map<Symbol, List<Relocation>> relocationTable, MachOSymtab symtab) argument
[all...]
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/
H A DJPECoffRelocObject.java63 private static PECoffSection createByteSection(ArrayList<PECoffSection> sections, String sectName, byte[] scnData, argument
66 PECoffSection sect = new PECoffSection(sectName, scnData, scnFlags, sectAlign, hasRelocs, sections.size());
68 sections.add(sect);
73 private static void createByteSection(ArrayList<PECoffSection> sections, ByteContainer c, int scnFlags, int sectAlign) { argument
78 sect = createByteSection(sections, c.getContainerName(), scnData, hasRelocs, scnFlags, sectAlign);
83 private void createCodeSection(ArrayList<PECoffSection> sections, CodeContainer c) { argument
85 createByteSection(sections, c, scnFlags, sectionAlignment);
88 private void createReadOnlySection(ArrayList<PECoffSection> sections, ReadOnlyDataContainer c) { argument
90 createByteSection(sections, c, scnFlags, sectionAlignment);
93 private void createReadWriteSection(ArrayList<PECoffSection> sections, ByteContaine argument
268 createPECoffRelocTable(ArrayList<PECoffSection> sections, Map<Symbol, List<Relocation>> relocationTable) argument
[all...]
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/action/
H A DSimpleAction.java37 /* package-private */ final String[] sections; field in class:SimpleAction
58 sections = name.split("\\.");
79 return section.createChildren(sections);
H A DPatternAction.java54 action.sections[0] = value;
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/
H A DHtmlSection.java153 public HtmlSection createChildren(String[] sections) { argument
155 int n = sections.length;
160 if (!sections[i].equals(current.child.name)) {
166 current = current.createChildren(sections[i]);
/openjdk10/jdk/test/javax/print/PrintSubInputStream/
H A DExample.java127 public TestInputStream(byte [] bytes, int sections) argument
131 block_size = avail / sections;
/openjdk10/jdk/make/src/classes/build/tools/jigsaw/
H A DModuleSummary.java330 String[] sections = new String[] {
337 out.println(SECTION.toString(sections));
/openjdk10/make/
H A DDocs.gmk204 $$(subst 2,two,$$(subst 3,three,$$(words $$($1_GROUPS)))) sections:</p> \

Completed in 182 milliseconds