| 123 | |
| 124 | |
| 125 | void LldbAdapter::ApplyBreakpoints() |
| 126 | { |
| 127 | for (const auto& bp : m_pendingBreakpoints) |
| 128 | { |
| 129 | AddBreakpoint(bp); |
| 130 | } |
| 131 | // Clear the pending breakpoint list so that when the adapter launch/attach/connect to the target for the next time, |
| 132 | // it always gets a clean list of breakpoints from the controller. |
| 133 | m_pendingBreakpoints.clear(); |
| 134 | } |
| 135 | |
| 136 | |
| 137 | bool LldbAdapter::IsELFWithoutDynamicLoader(BinaryView* data) |
nothing calls this directly
no outgoing calls
no test coverage detected