GDB (xrefs)
|
Public Member Functions | |
__init__ (self) | |
complete (self, text, word) | |
invoke (self, arg, from_tty) | |
__init__ (self) | |
complete (self, text, word) | |
invoke (self, arg, from_tty) | |
Protected Member Functions | |
_parse_pri_arg (self, arg) | |
_set_filter_priority (self, command_tuple) | |
_parse_pri_arg (self, arg) | |
_set_filter_priority (self, command_tuple) | |
GDB command to set the priority of the specified frame-filter. Usage: set frame-filter priority DICTIONARY NAME PRIORITY DICTIONARY is the name of the frame filter dictionary on which to operate. Named dictionaries are: "global" for the global frame filter dictionary, "progspace" for the program space's framefilter dictionary. If either of these two are not specified, the dictionary name is assumed to be the name of an "objfile" -- a shared library or an executable. NAME matches the name of the frame filter to operate on. PRIORITY is the an integer to assign the new priority to the frame filter.
Definition at line 290 of file frame_filters.py.
gdb.command.frame_filters.SetFrameFilterPriority.__init__ | ( | self | ) |
Definition at line 307 of file frame_filters.py.
References gdb.command.frame_filters.SetFrameFilterPriority.__init__().
Referenced by gdb.command.frame_filters.SetFrameFilterPriority.__init__().
gdb.command.frame_filters.SetFrameFilterPriority.__init__ | ( | self | ) |
Definition at line 307 of file frame_filters.py.
References gdb.command.frame_filters.SetFrameFilterPriority.__init__().
|
protected |
Internal worker to parse a priority from a tuple. Arguments: arg: Tuple which contains the arguments from the command. Returns: A tuple containing the dictionary, name and priority from the arguments. Raises: gdb.GdbError: An error parsing the arguments.
Definition at line 312 of file frame_filters.py.
Referenced by gdb.command.frame_filters.SetFrameFilterPriority.invoke(), and gdb.command.frame_filters.ShowFrameFilterPriority.invoke().
|
protected |
Internal worker to parse a priority from a tuple. Arguments: arg: Tuple which contains the arguments from the command. Returns: A tuple containing the dictionary, name and priority from the arguments. Raises: gdb.GdbError: An error parsing the arguments.
Definition at line 312 of file frame_filters.py.
Referenced by gdb.command.frame_filters.SetFrameFilterPriority.invoke(), and gdb.command.frame_filters.ShowFrameFilterPriority.invoke().
|
protected |
Internal worker for setting priority of frame-filters, by parsing a tuple and calling _set_priority with the parsed tuple. Arguments: command_tuple: Tuple which contains the arguments from the command.
Definition at line 334 of file frame_filters.py.
References gdb.frames.return_list(), and gdb.frames.set_priority().
Referenced by gdb.command.frame_filters.SetFrameFilterPriority.invoke().
|
protected |
Internal worker for setting priority of frame-filters, by parsing a tuple and calling _set_priority with the parsed tuple. Arguments: command_tuple: Tuple which contains the arguments from the command.
Definition at line 334 of file frame_filters.py.
References gdb.frames.return_list(), and gdb.frames.set_priority().
Referenced by gdb.command.frame_filters.SetFrameFilterPriority.invoke().
gdb.command.frame_filters.SetFrameFilterPriority.complete | ( | self, | |
text, | |||
word ) |
Completion function for both frame filter dictionary, and frame filter name.
Definition at line 361 of file frame_filters.py.
References gdb.command.frame_filters._complete_frame_filter_list(), gdb.command.frame_filters._complete_frame_filter_name(), and gdb.frames.return_list().
gdb.command.frame_filters.SetFrameFilterPriority.complete | ( | self, | |
text, | |||
word ) |
Completion function for both frame filter dictionary, and frame filter name.
Definition at line 361 of file frame_filters.py.
References gdb.command.frame_filters._complete_frame_filter_list(), gdb.command.frame_filters._complete_frame_filter_name(), and gdb.frames.return_list().
gdb.command.frame_filters.SetFrameFilterPriority.invoke | ( | self, | |
arg, | |||
from_tty ) |
gdb.command.frame_filters.SetFrameFilterPriority.invoke | ( | self, | |
arg, | |||
from_tty ) |