Lines Matching refs:breakpoint

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:
66 to set a breakpoint on all ObjC selectors called alignLeftEdges:. It
69 (lldb) breakpoint set -s foo.dylib -n foo
76 (lldb) breakpoint set -n "-[SKTGraphicView alignLeftEdges:]"
87 instance the -f option in "breakpoint" completes to source files, the
104 (lldb) command alias bfl breakpoint set -f %1 -l %2
152 to see all the options for breakpoint setting. For instance, we might do:
164 Note that each "logical" breakpoint can have multiple "locations".
165 The logical breakpoint has an integer id, and it's locations have an
166 id within their parent breakpoint (the two are joined by a ".",
172 breakpoint 1 (e.g. a "1.2" breakpoint would be set on the newly loaded
175 The other piece of information in the breakpoint listing is whether the
176 breakpoint location was "resolved" or not. A location gets resolved when
178 debugging. For instance if you set a breakpoint in a shared library that
179 then gets unloaded, that breakpoint location will remain, but it will no
184 (gdb) set breakpoint pending on
186 That is, lldb should always make a breakpoint from your specification, even
189 in "breakpoint list", and we report the breakpoint as "pending" when you
197 locations generated by your logical breakpoint, or on particular locations
199 to print a backtrace when we hit this breakpoint we could do:
206 The "-c" option specifies that the breakpoint command is a set of lldb
208 breakpoint command using the Python interface instead.
237 common for more than one thread to hit your breakpoint(s) before the
246 After launching, we can continue until we hit our breakpoint. The primitive
291 This allows you to set a breakpoint, etc without having to explicitly interrupt
334 thread #1: tid = 0x2c03, stop reason = breakpoint 1.1, queue = com.apple.main-thread