| 1071 | } |
| 1072 | |
| 1073 | bool DbgEngAdapter::BreakInto() |
| 1074 | { |
| 1075 | if (ExecStatus() == DEBUG_STATUS_BREAK) |
| 1076 | return false; |
| 1077 | |
| 1078 | m_lastOperationIsStepInto = false; |
| 1079 | // After we call SetInterrupt(), the WaitForEvent() function will return due to a breakpoint exception |
| 1080 | if (this->m_debugControl->SetInterrupt(DEBUG_INTERRUPT_ACTIVE) != S_OK) |
| 1081 | return false; |
| 1082 | |
| 1083 | return true; |
| 1084 | } |
| 1085 | |
| 1086 | bool DbgEngAdapter::Go() |
| 1087 | { |
nothing calls this directly
no outgoing calls
no test coverage detected