1 write to _target
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Debugger_1.cs (1)
19_target = target;
23 references to _target
Microsoft.Diagnostics.DataContractReader.Contracts (23)
Contracts\Debugger_1.cs (23)
26TargetPointer debuggerPtrPtr = _target.ReadGlobalPointer(Constants.Globals.Debugger); 30debuggerAddress = _target.ReadPointer(debuggerPtrPtr); 40Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 47TargetPointer addr = _target.ReadGlobalPointer(Constants.Globals.CLRJitAttachState); 48return (int)_target.Read<uint>(addr.Value); 53TargetPointer addr = _target.ReadGlobalPointer(Constants.Globals.CORDebuggerControlFlags); 54uint currentFlags = _target.Read<uint>(addr.Value); 55_target.Write<uint>(addr.Value, currentFlags | (uint)DebuggerControlFlag_1.PendingAttach); 60TargetPointer addr = _target.ReadGlobalPointer(Constants.Globals.CORDebuggerControlFlags); 61uint currentFlags = _target.Read<uint>(addr.Value); 64_target.Write<uint>(addr.Value, currentFlags | (uint)DebuggerControlFlag_1.Attached); 68_target.Write<uint>(addr.Value, currentFlags & ~((uint)DebuggerControlFlag_1.Attached | (uint)DebuggerControlFlag_1.PendingAttach)); 74if (_target.TryReadGlobalPointer(Constants.Globals.MetadataUpdatesApplied, out TargetPointer? addr)) 76return _target.Read<byte>(addr.Value.Value) != 0; 86Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 95Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 104Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 109Data.DebuggerRCThread debuggerRcThread = _target.ProcessedData.GetOrAdd<Data.DebuggerRCThread>(rcThread); 118Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 127Data.Debugger debugger = _target.ProcessedData.GetOrAdd<Data.Debugger>(debuggerAddress); 131uint maxHijackFunctions = _target.ReadGlobal<uint>(Constants.Globals.MaxHijackFunctions); 135Target.TypeInfo memoryRangeTypeInfo = _target.GetTypeInfo(DataType.MemoryRange); 141Data.MemoryRange entry = _target.ProcessedData.GetOrAdd<Data.MemoryRange>(entryAddress);