Пример #1
0
 public HeaderItem(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol)
 {
     Id          = id;
     Node        = node;
     StartSymbol = startSymbol;
     EndSymbol   = endSymbol;
 }
Пример #2
0
 public HeaderItem(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol)
 {
     Id = id;
     Node = node;
     StartSymbol = startSymbol;
     EndSymbol = endSymbol;
 }
Пример #3
0
 public void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol)
 {
     _items.Add(new HeaderItem(id, node, startSymbol));
 }
Пример #4
0
 internal void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol = null)
 {
     _items.Add(new HeaderItem(id, node, startSymbol, endSymbol));
 }
Пример #5
0
 private static extern IntPtr GetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
Пример #6
0
 public void Add(ReadyToRunSectionType id, DependencyNodeCore <NodeFactory> node, ISymbolNode startSymbol)
 {
     _items.Add(new HeaderItem(id, node, startSymbol));
 }
Пример #7
0
 public HeaderItem(ReadyToRunSectionType id, DependencyNodeCore <NodeFactory> node, ISymbolNode startSymbol)
 {
     Id          = id;
     Node        = node;
     StartSymbol = startSymbol;
 }
Пример #8
0
 internal static IntPtr RhGetModuleSection(TypeManagerHandle module, ReadyToRunSectionType section, out int length)
 {
     return(RhGetModuleSection(ref module, section, out length));
 }
Пример #9
0
 private static extern IntPtr RhGetModuleSection(ref TypeManagerHandle module, ReadyToRunSectionType section, out int length);
Пример #10
0
 internal static extern IntPtr RhGetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
Пример #11
0
 public ReadyToRunSection(ReadyToRunSectionType type, int rva, int size)
 {
     Type = type;
     RelativeVirtualAddress = rva;
     Size = size;
 }
Пример #12
0
 private static extern IntPtr GetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
Пример #13
0
 internal void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol = null)
 {
     _items.Add(new HeaderItem(id, node, startSymbol, endSymbol));
 }
Пример #14
0
 internal static extern IntPtr RhGetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);