Lines Matching full:frame
12 frame = thread.GetFrameAtIndex(i)
13 function = frame.GetFunction()
18 start_addr = frame.GetSymbol().GetStartAddress().GetFileAddress()
20 print >> output, ' frame #{num}: {addr:#016x} {mod}`{symbol} + {offset}'.format(
23 … print >> output, ' frame #{num}: {addr:#016x} {mod}`{func} at {file}:{line} {args}'.format(
25 func='%s [inlined]' % funcs[i] if frame.IsInlined() else funcs[i],
27 … args=get_args_as_string(frame, showFuncName=False) if not frame.IsInlined() else '()')
33 for frame in thread:
34 print frame
40 Get the Canonical Frame Address for this stack frame.
48 Gets the deepest block that contains the frame PC.
54 Get the appropriate function name for this frame. Inlined functions in
56 just looking at the SBFunction or SBSymbol for a frame isn't enough.
58 function name for the frame.
70 Returns the language of the frame's SBFunction, or if there.
76 Return true if this frame represents an inlined function.
82 Return true if this frame is artificial (e.g a frame synthesized to
84 frame."
93 Gets the lexical block that defines the stack frame. Another way to think
95 for a stack frame. Inlined functions are represented as SBBlock objects
99 the scope of the frame. When a function contains no inlined functions,
103 block that defines this frame. If the PC isn't currently in an inlined
144 in the current frame."
149 the frame as the scope.