MCPcopy Create free account
hub / github.com/Vector35/debugger / ApplyBreakpoints

Method ApplyBreakpoints

core/adapters/lldbadapter.cpp:125–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123
124
125void 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
137bool LldbAdapter::IsELFWithoutDynamicLoader(BinaryView* data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected