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

Method HandleSetGlobalBreakpoints

OsiInterface/DebugMessages.cpp:344–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342 }
343
344 void DebugMessageHandler::HandleSetGlobalBreakpoints(uint32_t seq, DbgSetGlobalBreakpoints const & req)
345 {
346 Debug(" --> DbgSetGlobalBreakpoints(%d)", req.breakpoint_mask());
347
348 ResultCode rc;
349 if (!debugger_) {
350 Debug("SetGlobalBreakpoints: Not attached to story debugger!");
351 rc = ResultCode::NoDebuggee;
352 }
353 else
354 {
355 rc = debugger_->Breakpoints().SetGlobalBreakpoints((GlobalBreakpointType)req.breakpoint_mask());
356 }
357
358 SendResult(seq, rc);
359 }
360
361 void DebugMessageHandler::HandleSetBreakpoints(uint32_t seq, DbgSetBreakpoints const & req)
362 {

Callers

nothing calls this directly

Calls 2

DebugFunction · 0.85
SetGlobalBreakpointsMethod · 0.80

Tested by

no test coverage detected