Lines Matching full:frames
12 '''Iterate over all frames in a lldb.SBThread object.'''
16 '''Return the number of frames in a lldb.SBThread object.'''
20 '''A helper object that will lazily hand out frames for a thread when supplied an index.'''
42 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.'''
43 frames = []
45 frames.append(frame)
46 return frames
52 num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
53 frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames in this thread.''')
54 frame = property(get_frames_access_object, None, doc='''A read only property that returns an object that can be used to access frames as an array ("frame_12 = lldb.thread.frame[12]").''')