| 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 | { |
nothing calls this directly
no test coverage detected