MCPcopy Create free account
hub / github.com/Vector35/debugger / StepOver

Method StepOver

core/adapters/dbgengadapter.cpp:1114–1125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1112}
1113
1114bool DbgEngAdapter::StepOver()
1115{
1116 if (ExecStatus() != DEBUG_STATUS_BREAK)
1117 return false;
1118
1119 m_lastOperationIsStepInto = false;
1120 if (this->m_debugControl->SetExecutionStatus(DEBUG_STATUS_STEP_OVER) != S_OK)
1121 return false;
1122
1123 m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient));
1124 return true;
1125}
1126
1127bool DbgEngAdapter::StepReturn()
1128{

Callers

nothing calls this directly

Calls 1

SetExecutionStatusMethod · 0.80

Tested by

no test coverage detected