Lines Matching refs:frames
17 # described in the crash log. Only the files that have stack frames
98 self.frames = list()
106 if self.frames:
107 print "%s Frames:" % (prefix)
108 for frame in self.frames:
324 thread.frames.append (CrashLog.Frame(int(frame_match.group(1)), int(frame_match.group(3), 0), frame_match.group(4)))
433 inlined stack frames back to the concrete functions, and disassemble the location of the crash
561 for (frame_idx, frame) in enumerate(thread.frames):
642 # Only load the images found in stack frames for the crashed threads
680 for frame_idx, frame in enumerate(thread.frames):
727 option_parser.add_option('--load-all' , '-a', action='store_true', dest='load_all_images', help='load all executable images, not just the images found in the crashed stack frames', default=False)
731 option_parser.add_option('--disasm-depth' , '-d', type='int', dest='disassemble_depth', help='set the depth in stack frames that should be disassembled (default is 1)', default=1)
732 option_parser.add_option('--disasm-all' , '-D', action='store_true', dest='disassemble_all_threads', help='enabled disassembly of frames on all threads (not just the crashed thread)', default=False)
736 option_parser.add_option('--source-frames' , type='int', metavar='NFRAMES', dest='source_frames', help='show source for NFRAMES (default = 4)', default=4)
744 inlined stack frames back to the concrete functions, and disassemble the location of the crash