Home | History | Annotate | Download | only in gdb

Lines Matching defs:function

50     'function' method, then all of the other methods are carried out
85 def function(self):
86 """ Return the name of the frame's function or an address of
87 the function of the frame. First determine if this is a
89 frame internal function API. Finally, if a name cannot be
90 determined return the address. If this function returns an
91 address, GDB will attempt to determine the function name from
96 # "function", so determine which object this is.
98 if hasattr(self._base, "function"):
100 # "function" method, use that.
101 return self._base.function()
106 return "<function called from gdb>"
110 func = frame.function()
112 # If we cannot determine the function name, return the
113 # address. If GDB detects an integer value from this function
114 # it will attempt to find the function name from minimal
292 if block.function != None: