Lines Matching refs:gdb
4 Pretty printers are gdb extensions that allow it to print useful, human-readable
6 gdb would usually output something like this:
8 (gdb) print mutex
27 However, with a pretty printer gdb will output something like this:
29 (gdb) print mutex
39 Before printing a value, gdb will first check if there's a pretty printer
43 gdb.printing.register_pretty_printer().
45 Currently our printers are based on gdb.RegexpCollectionPrettyPrinter, which
60 for each distro, though gdb should be able to automatically load them by itself.
61 When in doubt, you can use the 'info pretty-printer' gdb command to list the
84 that uses PExpect to drive gdb through the program and compare its output to
87 The tests run on the glibc host, which is assumed to have both gdb and PExpect;
112 2. Write the pretty printer code itself. For this you can follow the gdb
153 * Older versions of the gdb Python API have a bug where
154 gdb.RegexpCollectionPrettyPrinter would not be able to get a value's real type
155 if it was typedef'd. This would cause gdb to ignore the pretty printers for
164 as part of gdb 7.8. However, typedef'ing an already typedef'd type may cause