13 references to AddMap
Mono.Cecil (13)
Mono.Cecil.PE\ImageWriter.cs (11)
699 map.AddMap (TextSegment.Code, metadata.code.length, !pe64 ? 4 : 16); 700 map.AddMap (TextSegment.Resources, metadata.resources.length, 8); 701 map.AddMap (TextSegment.Data, metadata.data.length, metadata.data.BufferAlign); 704 map.AddMap (TextSegment.StrongNameSignature, GetStrongNameLength (), 4); 728 map.AddMap (TextSegment.DebugDirectory, debug_dir_len, 4); 758 map.AddMap (TextSegment.TableHeap, metadata.table_heap.length, 4); 759 map.AddMap (TextSegment.StringHeap, metadata.string_heap.length, 4); 760 map.AddMap (TextSegment.UserStringHeap, metadata.user_string_heap.IsEmpty ? 0 : metadata.user_string_heap.length, 4); 761 map.AddMap (TextSegment.GuidHeap, metadata.guid_heap.length, 4); 762 map.AddMap (TextSegment.BlobHeap, metadata.blob_heap.IsEmpty ? 0 : metadata.blob_heap.length, 4); 763 map.AddMap (TextSegment.PdbHeap, metadata.pdb_heap == null ? 0 : metadata.pdb_heap.length, 4);
Mono.Cecil\AssemblyWriter.cs (2)
989 map.AddMap (TextSegment.CLIHeader, 0x48, 8); 994 map.AddMap (TextSegment.Code, 0, !pe64 ? 4 : 16);