| 69 | {} |
| 70 | |
| 71 | ResultCode BreakpointManager::SetGlobalBreakpoints(GlobalBreakpointType breakpoints) |
| 72 | { |
| 73 | if (breakpoints & ~GlobalBreakpointTypeAll) { |
| 74 | WARN("Debugger::SetGlobalBreakpoints(): Unsupported breakpoint type set: %08x", breakpoints); |
| 75 | return ResultCode::UnsupportedBreakpointType; |
| 76 | } |
| 77 | |
| 78 | DEBUG("Debugger::SetGlobalBreakpoints(): Set to %08x", breakpoints); |
| 79 | globalBreakpoints_ = breakpoints; |
| 80 | return ResultCode::Success; |
| 81 | } |
| 82 | |
| 83 | void BreakpointManager::BeginUpdatingNodeBreakpoints() |
| 84 | { |
no outgoing calls
no test coverage detected