| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectBreakpointCommand.cpp | 340 const BreakpointList &breakpoints = target.GetBreakpointList(); in DoExecute() local 341 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 510 const BreakpointList &breakpoints = target.GetBreakpointList(); in DoExecute() local 511 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 589 const BreakpointList &breakpoints = target->GetBreakpointList(); in DoExecute() local 590 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 913 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 1023 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 1166 const BreakpointList &breakpoints = in DoExecute() local 1171 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 1297 BreakpointList &breakpoints = target.GetBreakpointList(); in DoExecute() local 1298 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 1443 BreakpointList &breakpoints = target.GetBreakpointList(); in DoExecute() local 1445 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() 1485 for (auto breakpoint_sp : breakpoints.Breakpoints()) { in DoExecute() 1809 size_t num_breakpoints = breakpoints.GetSize(); in DoExecute() [all …]
|
| H A D | Options.td | 60 Desc<"Show debugger internal breakpoints">; 69 Desc<"List Dummy breakpoints - i.e. breakpoints set before a file is " 110 Option<"dummy-breakpoints", "D">, Group<1>, 111 Desc<"Act on Dummy breakpoints - i.e. breakpoints set before a file is " 237 Group<1>, Desc<"Delete Dummy breakpoints - i.e. breakpoints set before a " 250 Group<3>, Desc<"Operate on Dummy breakpoints - i.e. breakpoints set before " 262 "name or when all breakpoints are disabled.">; 265 "name or when all breakpoints are deleted.">; 296 Desc<"Sets Dummy breakpoints - i.e. breakpoints set before a file is " 302 Option<"dummy-breakpoints", "D">, Group<1>, [all …]
|
| H A D | CommandCompletions.cpp | 634 const BreakpointList &breakpoints = target->GetBreakpointList(); in Breakpoints() local 639 size_t num_breakpoints = breakpoints.GetSize(); in Breakpoints() 644 lldb::BreakpointSP bp = breakpoints.GetBreakpointAtIndex(i); in Breakpoints()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | Statistics.cpp | 131 BreakpointList &breakpoints = target.GetBreakpointList(i == 1); in ToJSON() local 133 breakpoints.GetListMutex(lock); in ToJSON() 134 size_t num_breakpoints = breakpoints.GetSize(); in ToJSON() 136 Breakpoint *bp = breakpoints.GetBreakpointAtIndex(i).get(); in ToJSON()
|
| H A D | TargetProperties.td | 16 Desc<"Move breakpoints to nearest code.">; 45 Desc<"Skip function prologues when setting breakpoints by name.">; 104 def BreakpointUseAvoidList: Property<"breakpoints-use-platform-avoid-list", "Boolean">, 106 Desc<"Consult the platform module avoid list when setting non-module specific breakpoints.">; 149 …breakpoints by file and line. Breakpoint locations can end up being inlined by the compiler, so th… 191 Desc<"Require all breakpoints to be hardware breakpoints.">; 214 def IgnoreBreakpointsInExpressions: Property<"ignore-breakpoints-in-expressions", "Boolean">, 217 Desc<"If true, breakpoints will be ignored during expression evaluation.">;
|
| H A D | Target.cpp | 1112 const BreakpointList &breakpoints = GetBreakpointList(); in SerializeBreakpointsToFile() local 1114 size_t num_breakpoints = breakpoints.GetSize(); in SerializeBreakpointsToFile() 1116 Breakpoint *bp = breakpoints.GetBreakpointAtIndex(i).get(); in SerializeBreakpointsToFile()
|
| /freebsd-14.2/usr.sbin/bhyve/ |
| H A D | gdb.c | 144 static TAILQ_HEAD(, breakpoint) breakpoints; 834 if (!TAILQ_EMPTY(&breakpoints)) { in gdb_cpu_add() 970 TAILQ_FOREACH(bp, &breakpoints, link) { in find_breakpoint() 1359 if (TAILQ_EMPTY(&breakpoints)) in remove_all_sw_breakpoints() 1366 TAILQ_REMOVE(&breakpoints, bp, link); in remove_all_sw_breakpoints() 1369 TAILQ_INIT(&breakpoints); in remove_all_sw_breakpoints() 1413 if (TAILQ_EMPTY(&breakpoints) && in update_sw_breakpoint() 1422 TAILQ_INSERT_TAIL(&breakpoints, bp, link); in update_sw_breakpoint() 1429 TAILQ_REMOVE(&breakpoints, bp, link); in update_sw_breakpoint() 1431 if (TAILQ_EMPTY(&breakpoints)) in update_sw_breakpoint() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointIDList.cpp | 223 const BreakpointList &breakpoints = target->GetBreakpointList(); in FindAndReplaceIDRanges() local 224 const size_t num_breakpoints = breakpoints.GetSize(); in FindAndReplaceIDRanges() 226 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(j).get(); in FindAndReplaceIDRanges()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/bus/ |
| H A D | brcm,gisb-arb.txt | 14 for breakpoints.
|
| /freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBTargetExtensions.i | 184 …breakpoints = property(get_target_bkpts, None, doc='''A read only property that returns a list() o…
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 5454 BreakpointList &breakpoints = target->GetBreakpointList(false); in GetBreakpoint() local 5455 return breakpoints.GetBreakpointAtIndex(item.GetIdentifier()); in GetBreakpoint() 5512 BreakpointList &breakpoints = target->GetBreakpointList(false); in TreeDelegateGenerateChildren() local 5514 breakpoints.GetListMutex(lock); in TreeDelegateGenerateChildren() 5520 item.Resize(breakpoints.GetSize(), *m_breakpoint_delegate_sp, true); in TreeDelegateGenerateChildren() 5521 for (size_t i = 0; i < breakpoints.GetSize(); i++) { in TreeDelegateGenerateChildren()
|
| /freebsd-14.2/sys/dev/aic7xxx/ |
| H A D | aic79xx.reg | 3193 * single step, breakpoints and program load.
|
| /freebsd-14.2/sys/contrib/dev/acpica/ |
| H A D | changes.txt | 18093 Implemented sticky user breakpoints in the AML debugger.
|