|
GDB (xrefs)
|
Functions | |
| def | _prompt_pwd |
| def | _prompt_object_attr |
| def | _prompt_frame |
| def | _prompt_thread |
| def | _prompt_version |
| def | _prompt_esc |
| def | _prompt_bs |
| def | _prompt_n |
| def | _prompt_r |
| def | _prompt_param |
| def | _prompt_noprint_begin |
| def | _prompt_noprint_end |
| def | prompt_help |
| def | substitute_prompt |
Variables | |
| dictionary | prompt_substitutions |
| def gdb::prompt::_prompt_bs | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_esc | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_frame | ( | attr | ) | [private] |
Definition at line 42 of file prompt.py.
References _prompt_object_attr().
| def gdb::prompt::_prompt_n | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_noprint_begin | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_noprint_end | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_object_attr | ( | func, | |
| what, | |||
| attr, | |||
| nattr | |||
| ) | [private] |
Internal worker for fetching GDB attributes.
Definition at line 26 of file prompt.py.
References func.
Referenced by _prompt_frame(), and _prompt_thread().
| def gdb::prompt::_prompt_param | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_pwd | ( | ignore | ) | [private] |
| def gdb::prompt::_prompt_r | ( | attr | ) | [private] |
| def gdb::prompt::_prompt_thread | ( | attr | ) | [private] |
Definition at line 46 of file prompt.py.
References _prompt_object_attr().
| def gdb::prompt::_prompt_version | ( | attr | ) | [private] |
| def gdb::prompt::prompt_help | ( | ) |
| def gdb::prompt::substitute_prompt | ( | prompt | ) |
00001 { 00002 'e': _prompt_esc, 00003 '\\': _prompt_bs, 00004 'n': _prompt_n, 00005 'r': _prompt_r, 00006 'v': _prompt_version, 00007 'w': _prompt_pwd, 00008 'f': _prompt_frame, 00009 't': _prompt_thread, 00010 'p': _prompt_param, 00011 '[': _prompt_noprint_begin, 00012 ']': _prompt_noprint_end 00013 }
1.7.6.1