1 override of IsLittleEndian
Microsoft.Diagnostics.DataContractReader (1)
ContractDescriptorTarget.cs (1)
409public override bool IsLittleEndian => _config.IsLittleEndian;
7 references to IsLittleEndian
Microsoft.Diagnostics.DataContractReader.Contracts (7)
Contracts\DebugInfo\DebugInfo_1.cs (2)
80NativeReader nibbleNativeReader = new(new TargetStream(_target, debugInfo, 24 /*maximum size of 4 32bit ints compressed*/), _target.IsLittleEndian); 105NativeReader boundsNativeReader = new(new TargetStream(_target, addrBounds, cbBounds), _target.IsLittleEndian);
Contracts\DebugInfo\DebugInfo_2.cs (3)
60NativeReader nibbleNativeReader = new(new TargetStream(_target, debugInfo, 42 /*maximum size of 7 32bit ints compressed*/), _target.IsLittleEndian); 113NativeReader boundsNativeReader = new(new TargetStream(_target, addrBounds, cbBounds), _target.IsLittleEndian); 146NativeReader varsNativeReader = new(new TargetStream(_target, chunks.VarsStart, chunks.VarsSize), _target.IsLittleEndian);
Contracts\ExecutionManager\ExecutionManagerCore.ReadyToRunJitManager.cs (1)
133Target.IsLittleEndian
Contracts\GCInfo\GCInfoDecoder.cs (1)
148_reader = new NativeReader(targetStream, _target.IsLittleEndian);