Lines Matching defs:select
1664 def select(self):
1665 '''If supported, select this frame and return True; return False if unsupported
1667 Not all builds have a gdb.Frame.select method; seems to be present on Fedora 12
1669 if not hasattr(self._gdbframe, 'select'):
1670 print ('Unable to select frame: '
1671 'this build of gdb does not expose a gdb.Frame.select method')
1673 self._gdbframe.select()
1988 if iter_frame.select():
2024 # Not all builds of gdb have gdb.Frame.select
2025 if hasattr(gdb.Frame, 'select'):