| 391 | } |
| 392 | |
| 393 | void DebugMessageHandler::HandleGetDatabaseContents(uint32_t seq, DbgGetDatabaseContents const & req) |
| 394 | { |
| 395 | DEBUG(" --> DbgGetDatabaseContents(%d)", req.database_id()); |
| 396 | |
| 397 | ResultCode rc; |
| 398 | if (!debugger_) { |
| 399 | WARN("GetDatabaseContents: Not attached to story debugger!"); |
| 400 | rc = ResultCode::NoDebuggee; |
| 401 | } |
| 402 | else |
| 403 | { |
| 404 | rc = debugger_->GetDatabaseContents(req.database_id()); |
| 405 | } |
| 406 | |
| 407 | SendResult(seq, rc); |
| 408 | } |
| 409 | |
| 410 | void DebugMessageHandler::HandleContinue(uint32_t seq, DbgContinue const & req) |
| 411 | { |
nothing calls this directly
no test coverage detected