Exemplo n.º 1
0
		public BreakpointData(UInt64 offset, BreakType breakType, BreakpointFlags flags,
			DataBreakpointAccessTypes dkind, UInt32 dataSize, UInt32 procType,
			UInt32 matchThread, UInt32 id, UInt32 passCount, UInt32 currentPasscount, String command, String expr)
		{
			Offset = offset;
			Flags = flags;
			BreakType = breakType;
			DataBreakpointKind = dkind;
			DataSize = dataSize;
			ProcType = procType;
			MatchThread = matchThread;
			Id = id;
			PassCount = passCount;
			CurrentPassCount = currentPasscount;
			Command = command;
			Expression = expr;			
		}		
Exemplo n.º 2
0
 public BreakpointData(ulong offset, BreakType breakType, BreakpointFlags flags,
                       DataBreakpointAccessTypes dkind, uint dataSize, uint procType,
                       uint matchThread, uint id, uint passCount, uint currentPasscount, string command, string expr)
 {
     Offset             = offset;
     Flags              = flags;
     BreakType          = breakType;
     DataBreakpointKind = dkind;
     DataSize           = dataSize;
     ProcType           = procType;
     MatchThread        = matchThread;
     Id               = id;
     PassCount        = passCount;
     CurrentPassCount = currentPasscount;
     Command          = command;
     Expression       = expr;
 }