예제 #1
0
 internal SymbolTable(SectionHeader header, Func <EndianBinaryReader> readerSource, IStringTable table, ELF <T> elf) : base(header, readerSource)
 {
     this.table = table;
     this.elf   = elf;
     ReadSymbols();
 }
예제 #2
0
 internal NoteSection(SectionHeader header, Class elfClass, Func <EndianBinaryReader> readerSource) : base(header, readerSource)
 {
     data = new NoteData(elfClass, header.Offset, readerSource);
 }
예제 #3
0
 internal ProgBitsSection(SectionHeader header, Func <EndianBinaryReader> readerSource) : base(header, readerSource)
 {
 }
예제 #4
0
 internal Section(SectionHeader header, Func <EndianBinaryReader> readerSourceSourceSource)
 {
     Header = header;
     this.readerSourceSourceSource = readerSourceSourceSource;
 }
예제 #5
0
 internal StringTable(SectionHeader header, Func <EndianBinaryReader> readerSource) : base(header, readerSource)
 {
     stringsByIdx = new Dictionary <long, string>();
     ReadStrings();
 }