MCPcopy Create free account
hub / github.com/Norbyte/ositools / HandleContinue

Method HandleContinue

OsiInterface/DebugMessages.cpp:414–429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

412 }
413
414 void DebugMessageHandler::HandleContinue(uint32_t seq, DbgContinue const & req)
415 {
416 Debug(" --> DbgContinue()");
417
418 ResultCode rc;
419 if (!debugger_) {
420 Debug("Continue: Not attached to story debugger!");
421 rc = ResultCode::NoDebuggee;
422 }
423 else
424 {
425 rc = debugger_->ContinueExecution(req.action(), req.breakpoint_mask(), req.flags());
426 }
427
428 SendResult(seq, rc);
429 }
430
431 void DebugMessageHandler::HandleSyncStory(uint32_t seq, DbgSyncStory const & req)
432 {

Callers

nothing calls this directly

Calls 2

DebugFunction · 0.85
ContinueExecutionMethod · 0.80

Tested by

no test coverage detected