Lines Matching refs:frame
468 def file_module_function_of(self, frame):
469 code = frame.f_code
509 def globaltrace_trackcallers(self, frame, why, arg):
516 this_func = self.file_module_function_of(frame)
517 parent_func = self.file_module_function_of(frame.f_back)
520 def globaltrace_countfuncs(self, frame, why, arg):
526 this_func = self.file_module_function_of(frame)
529 def globaltrace_lt(self, frame, why, arg):
536 code = frame.f_code
537 filename = frame.f_globals.get('__file__', None)
552 def localtrace_trace_and_count(self, frame, why, arg):
555 filename = frame.f_code.co_filename
556 lineno = frame.f_lineno
567 def localtrace_trace(self, frame, why, arg):
570 filename = frame.f_code.co_filename
571 lineno = frame.f_lineno
580 def localtrace_count(self, frame, why, arg):
582 filename = frame.f_code.co_filename
583 lineno = frame.f_lineno