| 4569 | } |
| 4570 | |
| 4571 | void WinDebugger::ClearStep() |
| 4572 | { |
| 4573 | BfLogDbg("ClearStep\n"); |
| 4574 | |
| 4575 | RemoveTempBreakpoints(); |
| 4576 | mOrigStepType = StepType_None; |
| 4577 | mStepType = StepType_None; |
| 4578 | mStepStartPC = 0; |
| 4579 | mStepSP = 0; |
| 4580 | mStepPC = 0; |
| 4581 | mIsStepIntoSpecific = false; |
| 4582 | mStepIsRecursing = false; |
| 4583 | mStepStopOnNextInstruction = false; |
| 4584 | mStepLineData = DbgLineDataEx(); |
| 4585 | } |
| 4586 | |
| 4587 | bool WinDebugger::SetupStep(StepType stepType) |
| 4588 | { |
nothing calls this directly
no test coverage detected