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

Method SetGlobalBreakpoints

OsiInterface/Debugger.cpp:115–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113 {}
114
115 ResultCode BreakpointManager::SetGlobalBreakpoints(GlobalBreakpointType breakpoints)
116 {
117 if (breakpoints & ~GlobalBreakpointTypeAll) {
118 Debug("Debugger::SetGlobalBreakpoints(): Unsupported breakpoint type set: %08x", breakpoints);
119 return ResultCode::UnsupportedBreakpointType;
120 }
121
122 Debug("Debugger::SetGlobalBreakpoints(): Set to %08x", breakpoints);
123 globalBreakpoints_ = breakpoints;
124 return ResultCode::Success;
125 }
126
127 void BreakpointManager::BeginUpdatingNodeBreakpoints()
128 {

Callers 2

DebuggerMethod · 0.80

Calls 1

DebugFunction · 0.85

Tested by

no test coverage detected