MCPcopy Create free account
hub / github.com/KDE/kdevelop / jumpToMemoryAddress

Method jumpToMemoryAddress

plugins/debuggercommon/midebugsession.cpp:768–777  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

766}
767
768void MIDebugSession::jumpToMemoryAddress(const QString& address)
769{
770 if (debuggerStateIsOn(s_dbgNotStarted|s_shuttingDown))
771 return;
772
773 if (!address.isEmpty()) {
774 addCommand(NonMI, QStringLiteral("tbreak *%1").arg(address));
775 addCommand(NonMI, QStringLiteral("jump *%1").arg(address));
776 }
777}
778
779void MIDebugSession::addUserCommand(const QString& cmd)
780{

Callers 1

jumpToCursorMethod · 0.80

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected