Deleted Added
full compact
BreakpointList.h (256281) BreakpointList.h (263363)
1//===-- BreakpointList.h ----------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 135 unchanged lines hidden (view full) ---

144 //------------------------------------------------------------------
145 /// Tell all the breakpoints to update themselves due to a change in the
146 /// modules in \a module_list. \a added says whether the module was loaded
147 /// or unloaded.
148 ///
149 /// @param[in] module_list
150 /// The module list that has changed.
151 ///
1//===-- BreakpointList.h ----------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 135 unchanged lines hidden (view full) ---

144 //------------------------------------------------------------------
145 /// Tell all the breakpoints to update themselves due to a change in the
146 /// modules in \a module_list. \a added says whether the module was loaded
147 /// or unloaded.
148 ///
149 /// @param[in] module_list
150 /// The module list that has changed.
151 ///
152 /// @param[in] added
152 /// @param[in] load
153 /// \b true if the modules are loaded, \b false if unloaded.
153 /// \b true if the modules are loaded, \b false if unloaded.
154 ///
155 /// @param[in] delete_locations
156 /// If \a load is \b false, then delete breakpoint locations when
157 /// when updating breakpoints.
154 //------------------------------------------------------------------
155 void
158 //------------------------------------------------------------------
159 void
156 UpdateBreakpoints (ModuleList &module_list, bool added);
160 UpdateBreakpoints (ModuleList &module_list,
161 bool load,
162 bool delete_locations);
157
158 void
159 UpdateBreakpointsWhenModuleIsReplaced (lldb::ModuleSP old_module_sp, lldb::ModuleSP new_module_sp);
160
161 void
162 ClearAllBreakpointSites ();
163
164 //------------------------------------------------------------------

--- 29 unchanged lines hidden ---
163
164 void
165 UpdateBreakpointsWhenModuleIsReplaced (lldb::ModuleSP old_module_sp, lldb::ModuleSP new_module_sp);
166
167 void
168 ClearAllBreakpointSites ();
169
170 //------------------------------------------------------------------

--- 29 unchanged lines hidden ---