| 906 | } |
| 907 | |
| 908 | void DbgEngAdapter::ApplyBreakpoints() |
| 909 | { |
| 910 | for (const auto bp : m_pendingBreakpoints) |
| 911 | { |
| 912 | AddBreakpoint(bp); |
| 913 | } |
| 914 | m_pendingBreakpoints.clear(); |
| 915 | } |
| 916 | |
| 917 | DebugRegister DbgEngAdapter::ReadRegister(const std::string& reg) |
| 918 | { |
nothing calls this directly
no outgoing calls
no test coverage detected