MCPcopy Create free account
hub / github.com/SpartanJ/eepp / pause

Method pause

src/tools/ecode/plugins/debugger/dap/debuggerclientdap.cpp:679–686  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

677}
678
679bool DebuggerClientDap::pause( int threadId ) {
680 std::string sessionId = findSessionByThread( threadId );
681 if ( sessionId.empty() )
682 return false;
683 nlohmann::json arguments{ { DAP_THREAD_ID, threadId } };
684 makeRequest( "pause", arguments, nullptr, sessionId );
685 return true;
686}
687
688void DebuggerClientDap::processResponseNext( const Response& response,
689 const nlohmann::json& request,

Callers 3

sendFileBreakpointsMethod · 0.45
registerCommandsMethod · 0.45
inputMethod · 0.45

Calls 1

emptyMethod · 0.45

Tested by 1

inputMethod · 0.36