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

Method HandleGetDatabaseContents

OsiInterface/DebugMessages.cpp:397–412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

395 }
396
397 void DebugMessageHandler::HandleGetDatabaseContents(uint32_t seq, DbgGetDatabaseContents const & req)
398 {
399 Debug(" --> DbgGetDatabaseContents(%d)", req.database_id());
400
401 ResultCode rc;
402 if (!debugger_) {
403 Debug("GetDatabaseContents: Not attached to story debugger!");
404 rc = ResultCode::NoDebuggee;
405 }
406 else
407 {
408 rc = debugger_->GetDatabaseContents(req.database_id());
409 }
410
411 SendResult(seq, rc);
412 }
413
414 void DebugMessageHandler::HandleContinue(uint32_t seq, DbgContinue const & req)
415 {

Callers

nothing calls this directly

Calls 2

DebugFunction · 0.85
GetDatabaseContentsMethod · 0.80

Tested by

no test coverage detected