Lines Matching refs:LLDB

4 LLDB has been structured from the beginning to be scriptable in two
6 non-interactively using LLDB; and within the LLDB debugger tool, Python
109 kind of Python variable will it be? The answers are to use the LLDB API
110 functions, provided as part of the LLDB Python module. Running Python
111 from inside LLDB, LLDB will automatically give us our current frame
113 `SBFrame` (see the LLDB API for more information about `SBFrame`
123 The line above, executed in the Python script interpreter in LLDB, asks the
127 gets put into "root". If you examine the LLDB API, you will find that the
175 tree_utils.py) and then importing it into your LLDB Python interpreter.
182 is in our tree or not. To actually use it in LLDB on our dictionary program,
220 program, and getting to the find_word function in LLDB. The interesting part
299 What do we mean by that? When you enter a Python breakpoint command in LLDB, it
300 appears that you are entering one or more plain lines of Python. BUT LLDB then
304 bp_loc. When the breakpoint gets hit, LLDB wraps up the frame object where the
317 by LLDB with the correct context for the breakpoint. You do not have to use
336 Just as a reminder, LLDB is going to take this script and wrap it up in a function, like this:
349 LLDB will call the function, passing in the correct frame and breakpoint
362 make use of the frame parameter that LLDB guarantees will be there for us. We
363 use LLDB API functions to get the current thread from the current frame, and
383 File: /Volumes/Data/HD2/carolinetice/Desktop/LLDB-Web-Examples/dictionary.c.
486 This is the end of our example on how you might use Python scripting in LLDB to
496 tree_utils.py - Example Python functions using LLDB's API, including DFS
511 dictionary.c. These functions contain calls to LLDB API
512 functions, and assume that the LLDB Python module has been
531 the one defined in dictionary.c It uses LLDB API
582 the one defined in dictionary.c It uses LLDB API
605 the one defined in dictionary.c It uses LLDB API