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)
96file.Read(commandsPtr, out MachHeader header); 196file.Read(0, out MachMagic magic); 366inputFile.Read(commandsPtr, out LoadCommand loadCommand); 373inputFile.Read(commandsPtr, out LinkEditLoadCommand leCommand); 377inputFile.Read(commandsPtr, out Segment64LoadCommand segment64); 385inputFile.Read(sectionPtr, out Section64LoadCommand section); 403inputFile.Read(commandsPtr, out SymbolTableLoadCommand symtab);