Example #1
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public EventStepModifier(ThreadId threadId, Jdwp.StepSize stepSize, Jdwp.StepDepth stepDepth)
     : base(10)
 {
     this.threadId  = threadId;
     this.stepSize  = stepSize;
     this.stepDepth = stepDepth;
 }
Example #2
0
 public StepRequest(DalvikThread thread, Jdwp.StepDepth stepDepth)
 {
     Thread = thread;
     StepDepth = stepDepth;
 }
Example #3
0
 public StepRequest(DalvikThread thread, Jdwp.StepDepth stepDepth, StepMode stepMode = StepMode.Line)
 {
     Thread    = thread;
     StepDepth = stepDepth;
     StepMode  = stepMode;
 }
Example #4
0
 public StepRequest(DalvikThread thread, Jdwp.StepDepth stepDepth)
 {
     Thread    = thread;
     StepDepth = stepDepth;
 }
Example #5
0
 public StepRequest(DalvikThread thread, Jdwp.StepDepth stepDepth, StepMode stepMode = StepMode.Line)
 {
     Thread = thread;
     StepDepth = stepDepth;
     StepMode = stepMode;
 }
Example #6
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public EventStepModifier(ThreadId threadId, Jdwp.StepSize stepSize, Jdwp.StepDepth stepDepth)
     : base(10)
 {
     this.threadId = threadId;
     this.stepSize = stepSize;
     this.stepDepth = stepDepth;
 }