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

Method Go

core/adapters/dbgengadapter.cpp:1086–1099  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1084}
1085
1086bool DbgEngAdapter::Go()
1087{
1088 // TODO: we should have the debugger core to detect the failure and notify the user about it.
1089 // Currently, LLDB directly notifies such errors, which needs to be changed in the future.
1090 if (ExecStatus() != DEBUG_STATUS_BREAK)
1091 return false;
1092
1093 m_lastOperationIsStepInto = false;
1094 if (this->m_debugControl->SetExecutionStatus(DEBUG_STATUS_GO) != S_OK)
1095 return false;
1096
1097 m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient));
1098 return true;
1099}
1100
1101bool DbgEngAdapter::StepInto()
1102{

Callers

nothing calls this directly

Calls 1

SetExecutionStatusMethod · 0.80

Tested by

no test coverage detected