2 implementations of Read
Microsoft.NET.HostModel (2)
MachO\FileUtils\MemoryMappedMachOViewAccessor.cs (1)
19public void Read<T>(long offset, out T result) where T : unmanaged
MachO\FileUtils\StreamBasedMachOFile.cs (1)
24public void Read<T>(long offset, out T result) where T : unmanaged
8 references to Read
Microsoft.NET.HostModel (8)
MachO\BinaryFormat\Blobs\SuperBlob.cs (1)
128reader.Read(offset + sizeof(uint) * 3 + (i * BlobIndex.Size), out BlobIndex blobIndex);
MachO\MachObjectFile.cs (7)
80file.Read(commandsPtr, out MachHeader header); 178file.Read(0, out MachMagic magic); 348inputFile.Read(commandsPtr, out LoadCommand loadCommand); 355inputFile.Read(commandsPtr, out LinkEditLoadCommand leCommand); 359inputFile.Read(commandsPtr, out Segment64LoadCommand segment64); 367inputFile.Read(sectionPtr, out Section64LoadCommand section); 385inputFile.Read(commandsPtr, out SymbolTableLoadCommand symtab);