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

Method StepInto

core/adapters/dbgengadapter.cpp:1101–1112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1099}
1100
1101bool 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
1114bool DbgEngAdapter::StepOver()
1115{

Callers

nothing calls this directly

Calls 1

SetExecutionStatusMethod · 0.80

Tested by

no test coverage detected