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…
101 The file layout is as follows
139 …command_name : name of command as registed using the @lldb_command decorator and described in 'kgm…
140 cmd_args : shell like arguments that are passed as is to the registered python function.
156 …nterface and core utility function so that any function/code can be called as a simple util functi…
158 (lldb)showtask 0xabcdef000 is same as python >>> GetTaskSummary(0xabcdef000) or equivalent
169 …- note that we use core.value class as an interface to underlying C structures. Refer [Section B] …
195 * Alternatively, you can use lldb`s command for script loading as
199 …It is very important that you do reload using xnudebug command as it does the plumbing of commands…
209 for registered summaries. We can define python functions and hook it up with lldb as callbacks for …
216 Just printing the value of first_zone as (zone_t) 0xd007c000 wouldnt have been much help. But with …
227 …1. Register a function as a callback for displaying information for a type. Use the `@lldb_type_su…
230 …` is displayed. [In case you do not wish to have header then still define it as "" (empty string) ]
285 …- mistakenly used python reserved keyword as variable? (check http://docs.python.org/release/3.0.1…
288 - using a local variable with same name as global variable?
399 …* `ArgumentStringToInt()` is recommended for argument parsing, as it supports binary/octal/decimal…
400 …representations, as well as lldb expressions, which allows for convenient for usage e.g. `showmapv…