| 1099 | } |
| 1100 | |
| 1101 | bool DbgEngAdapter::StepInto() |
| 1102 | { |
| 1103 | if (ExecStatus() != DEBUG_STATUS_BREAK) |
| 1104 | return false; |
| 1105 | |
| 1106 | m_lastOperationIsStepInto = true; |
| 1107 | if (this->m_debugControl->SetExecutionStatus(DEBUG_STATUS_STEP_INTO) != S_OK) |
| 1108 | return false; |
| 1109 | |
| 1110 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 1111 | return true; |
| 1112 | } |
| 1113 | |
| 1114 | bool DbgEngAdapter::StepOver() |
| 1115 | { |
nothing calls this directly
no test coverage detected