| 408 | } |
| 409 | |
| 410 | void DebugMessageHandler::HandleContinue(uint32_t seq, DbgContinue const & req) |
| 411 | { |
| 412 | DEBUG(" --> DbgContinue()"); |
| 413 | |
| 414 | ResultCode rc; |
| 415 | if (!debugger_) { |
| 416 | WARN("Continue: Not attached to story debugger!"); |
| 417 | rc = ResultCode::NoDebuggee; |
| 418 | } |
| 419 | else |
| 420 | { |
| 421 | rc = debugger_->ContinueExecution(req.action(), req.breakpoint_mask(), req.flags()); |
| 422 | } |
| 423 | |
| 424 | SendResult(seq, rc); |
| 425 | } |
| 426 | |
| 427 | void DebugMessageHandler::HandleSyncStory(uint32_t seq, DbgSyncStory const & req) |
| 428 | { |
nothing calls this directly
no test coverage detected