Lines Matching refs:as
26 lldb can be used for kernel debugging the same way as gdb. The simplest way is to start lldb with k…
134 …command_name : name of command as registed using the @lldb_command decorator and described in 'kgm…
135 cmd_args : shell like arguments that are passed as is to the registered python function.
151 …nterface and core utility function so that any function/code can be called as a simple util functi…
153 (lldb)showtask 0xabcdef000 is same as python >>> GetTaskSummary(0xabcdef000) or equivalent
164 …- note that we use core.value class as an interface to underlying C structures. Refer [Section B] …
190 * Alternatively, you can use lldb`s command for script loading as
194 …It is very important that you do reload using xnudebug command as it does the plumbing of commands…
204 for registered summaries. We can define python functions and hook it up with lldb as callbacks for …
211 Just printing the value of first_zone as (zone_t) 0xd007c000 wouldnt have been much help. But with …
222 …1. Register a function as a callback for displaying information for a type. Use the `@lldb_type_su…
225 …` is displayed. [In case you do not wish to have header then still define it as "" (empty string) ]
280 …- mistakenly used python reserved keyword as variable? (check http://docs.python.org/release/3.0.1…
283 - using a local variable with same name as global variable?