/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | breakpoint.h | 221 struct breakpoint *owner; 277 void (*print_mention) (struct breakpoint *); 288 struct breakpoint struct 290 struct breakpoint *next; argument 352 struct breakpoint *related_breakpoint; argument 582 struct breakpoint *breakpoint_at; 634 extern struct breakpoint *set_momentary_breakpoint 649 extern void delete_breakpoint (struct breakpoint *); 753 extern void disable_breakpoint (struct breakpoint *); 755 extern void enable_breakpoint (struct breakpoint *); [all …]
|
H A D | breakpoint.c | 726 struct breakpoint *b = (struct breakpoint *) args; in insert_catchpoint() 1901 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint) in bpstat_find_breakpoint() argument 1922 struct breakpoint * 4061 struct breakpoint * 4066 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint)); in set_raw_breakpoint() 4254 struct breakpoint * 4349 struct breakpoint * 4779 struct breakpoint * 6141 struct breakpoint *breakpoint; in until_break_command() local 6766 struct breakpoint * [all …]
|
H A D | gdbthread.h | 28 struct breakpoint; 47 struct breakpoint *step_resume_breakpoint; 114 struct breakpoint *step_resume_breakpoint, 130 struct breakpoint **step_resume_breakpoint,
|
H A D | infcmd.c | 1146 struct breakpoint *breakpoint; in finish_command_continuation() local 1149 breakpoint = (struct breakpoint *) arg->data.pointer; in finish_command_continuation() 1153 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL in finish_command_continuation() 1190 struct breakpoint *breakpoint; in finish_command() local 1229 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish); in finish_command() 1232 old_chain = make_cleanup_delete_breakpoint (breakpoint); in finish_command() 1234 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint); in finish_command() 1263 arg1->data.pointer = breakpoint; in finish_command() 1278 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL in finish_command()
|
/openbsd/gnu/usr.bin/binutils/gdb/gdbserver/ |
H A D | mem-break.c | 31 struct breakpoint struct 33 struct breakpoint *next; argument 49 struct breakpoint *breakpoints; argument 54 struct breakpoint *bp; in set_breakpoint_at() 77 struct breakpoint *cur; in delete_breakpoint() 102 static struct breakpoint * 105 struct breakpoint *bp = breakpoints; in find_breakpoint_at() 139 struct breakpoint *bp, *orig_bp; in reinsert_breakpoint_by_bp() 160 struct breakpoint *bp; in uninsert_breakpoint() 174 struct breakpoint *bp; in reinsert_breakpoint() [all …]
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | ThreadPlanRunToAddress.cpp | 65 Breakpoint *breakpoint; in SetInitialBreakpoints() local 66 breakpoint = in SetInitialBreakpoints() 68 if (breakpoint != nullptr) { in SetInitialBreakpoints() 69 if (breakpoint->IsHardware() && !breakpoint->HasResolvedLocations()) in SetInitialBreakpoints() 71 m_break_ids[i] = breakpoint->GetID(); in SetInitialBreakpoints() 72 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints() 73 breakpoint->SetBreakpointKind("run-to-address"); in SetInitialBreakpoints() 121 Breakpoint *breakpoint = in GetDescription() local 123 if (breakpoint) in GetDescription() 124 breakpoint->Dump(s); in GetDescription()
|
/openbsd/gnu/llvm/lldb/examples/python/ |
H A D | jump.py | 19 breakpoint = None 35 breakpoint = target.BreakpointCreateByLocation( 49 breakpoint = target.BreakpointCreateByLocation( 63 breakpoint = target.BreakpointCreateByLocation( 73 breakpoint = target.BreakpointCreateByLocation( 82 breakpoint = target.BreakpointCreateByAddress(address) 86 breakpoint = target.BreakpointCreateByName(linespec) 88 num_locations = breakpoint.GetNumLocations() 97 location = breakpoint.GetLocationAtIndex(location_index) 100 target.BreakpointDelete(breakpoint.GetID())
|
/openbsd/gnu/llvm/lldb/docs/use/ |
H A D | tutorial.rst | 73 (lldb) breakpoint set --name foo 74 (lldb) breakpoint set -n foo 91 (lldb) breakpoint set -M foo 237 (lldb) breakpoint list 243 Note that setting a breakpoint creates a logical breakpoint, which could 255 the new location would be added to breakpoint 1 (e.g. a "1.2" breakpoint would 269 (gdb) set breakpoint pending on 274 "breakpoint list", and we report the breakpoint as "pending" when you set it so 308 Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit. 368 You can also make a breakpoint name from the options set on a breakpoint: [all …]
|
H A D | python-reference.rst | 171 Running a python script when a breakpoint gets hit 247 (lldb) breakpoint set --func-regex=. --shlib=libfoo.dylib 250 (lldb) breakpoint command add --script-type python 1 265 The breakpoint command add command above attaches a python script to breakpoint 1. To remove the br… 269 (lldb) breakpoint command delete 1 281 breakpoint locations - the actual places where the breakpoint will trigger. To 287 breakpoint locations are set and differ between each breakpoint type. Stop 390 (lldb) breakpoint set -P MyModule.MyResolverClass 411 (lldb) breakpoint set -P MyModule.MyResolverClass -s a.out 768 "a.out", set a breakpoint at "main", and then run and hit the breakpoint, and [all …]
|
H A D | troubleshooting.rst | 30 search for inlined breakpoint locations by adding the following line to your 35 $ echo "settings set target.inline-breakpoint-strategy always" >> ~/.lldbinit 37 This tells LLDB to always look in all compile units and search for breakpoint 44 If you set a file and line breakpoint using a full path to the source file, 45 like Xcode does when setting a breakpoint in its GUI on macOS when you click 97 use the breakpoint list command with the --verbose option to see the full paths 102 (lldb) breakpoint list --verbose
|
H A D | python.rst | 8 program data, iterating over containers and determining if a breakpoint 193 (lldb) breakpoint set -n find_word 199 at dictionary.c:105, stop reason = breakpoint 1.1 280 finding the word. We will do this using breakpoint command scripts. 285 attach a Python breakpoint command script to each breakpoint. The breakpoint 305 breakpoint was hit, and the breakpoint location object for the breakpoint that 308 and breakpoint location objects. 407 (lldb) breakpoint set -l 113 409 (lldb) breakpoint set -l 115 411 (lldb) breakpoint command add -s python 2 [all …]
|
/openbsd/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointResolverAddress.cpp | 120 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback() local 123 if (breakpoint.GetNumLocations() == 0) { in SearchCallback() 128 Target &target = breakpoint.GetTarget(); in SearchCallback() 138 m_resolved_addr = m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 140 if (bp_loc_sp && !breakpoint.IsInternal()) { in SearchCallback() 147 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback() 149 m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 174 BreakpointResolverAddress::CopyForBreakpoint(BreakpointSP &breakpoint) { in CopyForBreakpoint() argument 176 new BreakpointResolverAddress(breakpoint, m_addr)); in CopyForBreakpoint()
|
H A D | BreakpointIDList.cpp | 252 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(j).get(); in FindAndReplaceIDRanges() local 253 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges() 258 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges() 263 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() 275 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges()
|
/openbsd/gnu/llvm/lldb/docs/ |
H A D | lldb-for-gdb-users.txt | 35 this is the breakpoint command. In gdb, to set a breakpoint, you 51 (lldb) breakpoint set -f foo.c -l 12 53 to set a file & line breakpoint. To set a breakpoint on a function 56 (lldb) breakpoint set -n foo 60 (lldb) breakpoint set -M foo 64 (lldb) breakpoint set -S alignLeftEdges: 69 (lldb) breakpoint set -s foo.dylib -n foo 104 (lldb) command alias bfl breakpoint set -f %1 -l %2 172 breakpoint 1 (e.g. a "1.2" breakpoint would be set on the newly loaded 184 (gdb) set breakpoint pending on [all …]
|
/openbsd/gnu/usr.bin/binutils/gdb/mi/ |
H A D | gdb-mi.el | 362 (let ((breakpoint nil) 367 (let ((breakpoint (list (match-string 1) 375 (push breakpoint breakpoints-list)))) 382 (dolist (breakpoint breakpoints-list) 384 (nth 0 breakpoint) " " 385 (nth 1 breakpoint) " " 386 (nth 2 breakpoint) " " 387 (nth 3 breakpoint) " " 388 (nth 5 breakpoint) "\t" 389 (nth 6 breakpoint) ":" (nth 7 breakpoint) "\t" [all …]
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbinline.py | 76 for breakpoint in self.breakpoints: 77 breakpoint['breakpoint'] = target.BreakpointCreateByLocation( 78 breakpoint['file_name'], breakpoint['line_number']) 81 for breakpoint in self.breakpoints: 82 if breakpoint['breakpoint'].GetID() == breakpoint_id: 83 test.execute_user_command(breakpoint['command'])
|
/openbsd/gnu/llvm/lldb/examples/test/ |
H A D | usage-lldb-loggings | 9 …est.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_comma… 38 …est.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_comma… 46 Test a sequence of breakpoint command add, list, and delete. ... 51 Test a sequence of breakpoint command add, list, and delete. ... 70 …est.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_comma… 102 …est.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_comma… 110 Test a sequence of breakpoint command add, list, and delete. ... 115 Test a sequence of breakpoint command add, list, and delete. ...
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | Options.td | 49 let Command = "breakpoint list" in { 66 let Command = "breakpoint modify" in { 92 Desc<"Enable the breakpoint.">; 94 Desc<"Disable the breakpoint.">; 101 let Command = "breakpoint dummy" in { 108 let Command = "breakpoint set" in { 217 let Command = "breakpoint clear" in { 226 let Command = "breakpoint delete" in { 237 let Command = "breakpoint name" in { 261 let Command = "breakpoint read" in { [all …]
|
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.trace/ |
H A D | circ.c | 66 breakpoint (); 87 breakpoint ();
|
/openbsd/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
H A D | InstrumentationRuntimeASan.cpp | 305 Breakpoint *breakpoint = in Activate() local 309 breakpoint->SetCallback(InstrumentationRuntimeASan::NotifyBreakpointHit, this, in Activate() 311 breakpoint->SetBreakpointKind("address-sanitizer-report"); in Activate() 312 SetBreakpointID(breakpoint->GetID()); in Activate()
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | DebuggingJITedCode.rst | 23 attaches to a process, it puts a breakpoint in this function and associates a 25 debugger catches the breakpoint signal, loads the new object file from the 109 WARNING: Unable to resolve breakpoint to any actual locations. 111 1 location added to breakpoint 1 113 * thread #1, name = 'lli', stop reason = breakpoint 1.1 129 * thread #1, name = 'lli', stop reason = breakpoint 2.1 141 * thread #1, name = 'lli', stop reason = breakpoint 2.1
|
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.arch/ |
H A D | i386-sse.exp | 68 gdb_test "break [gdb_get_line_number "first breakpoint here"]" \ 83 gdb_test "break [gdb_get_line_number "second breakpoint here"]" \
|
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
H A D | RenderScriptRuntime.h | 80 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override { in CopyForBreakpoint() argument 82 new RSBreakpointResolver(breakpoint, m_kernel_name)); in CopyForBreakpoint() 103 const lldb::BreakpointSP &breakpoint, ConstString reduce_name, 106 : BreakpointResolver(breakpoint, BreakpointResolver::NameResolver), in BreakpointResolver() argument 130 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override { in CopyForBreakpoint() argument 132 breakpoint, m_reduce_name, m_rsmodules, m_kernel_types)); in CopyForBreakpoint() 277 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override { in CopyForBreakpoint() argument 279 breakpoint, m_group_name, m_script_groups, m_stop_on_all)); in CopyForBreakpoint()
|
/openbsd/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
H A D | InstrumentationRuntimeMainThreadChecker.cpp | 212 Breakpoint *breakpoint = in Activate() local 218 breakpoint->SetCallback( in Activate() 220 breakpoint->SetBreakpointKind("main-thread-checker-report"); in Activate() 221 SetBreakpointID(breakpoint->GetID()); in Activate()
|
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
H A D | ena-dis-br.exp | 70 proc break_at { breakpoint where } { 74 set test "break $breakpoint" 298 -re "No breakpoint number -1.*$gdb_prompt $" {
|