| 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 | { |
no test coverage detected