public DeleteBreakpoint(GdbEngine gdb, BreakpoitInfo bi) : base(gdb)
        {
            if (bi == null)
            {
                throw new ArgumentNullException("bi");
            }

            this.bi = bi;
        }
        public AddBreakpoint(GdbEngine gdb, string location) : base(gdb)
        {
            if (location == null)
            {
                throw new ArgumentNullException("location");
            }

            this.location = location;
        }
Exemple #3
0
        public GetVariableValue(GdbEngine gdb, VariableInfo vi) : base(gdb)
        {
            if (vi == null)
            {
                throw new ArgumentNullException("vi");
            }

            this.vi = vi;
        }
 public GetLocalVariables(GdbEngine gdb)
     : base(gdb)
 {
 }
Exemple #5
0
 public Where(GdbEngine gdb) : base(gdb)
 {
 }
 public GetVariableType(GdbEngine gdb, string name)
     : base(gdb)
 {
     this.name = name;
 }
Exemple #7
0
 public StepContinue(GdbEngine gdb)
     : base(gdb)
 {
 }
Exemple #8
0
 public StepOver(GdbEngine gdb)
     : base(gdb)
 {
 }
Exemple #9
0
 public StepOut(GdbEngine gdb)
     : base(gdb)
 {
 }
Exemple #10
0
 public StepIn(GdbEngine gdb) : base(gdb)
 {
 }
Exemple #11
0
 public GetArgs(GdbEngine gdb)
     : base(gdb)
 {
 }
 public GetThreads(GdbEngine gdb)
     : base(gdb)
 {
     Return = new List <ThreadInfo>();
 }