| 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 | { |
nothing calls this directly
no test coverage detected