Home | History | Annotate | Download | only in module

Lines Matching refs:stats_file

207         with open(self._stats_file_path, 'r') as stats_file:
208 self._goto_dump(stats_file, base_dump)
209 for dump in iter_statistics_dump(stats_file):
224 with open(self._stats_file_path, 'r') as stats_file:
226 return self._goto_dump(stats_file, sys.maxint)
228 def _goto_dump(self, stats_file, target_dump):
234 stats_file.seek(self._dump_pos_cache[target_dump])
240 stats_file.seek(curr_pos)
243 dump_iterator = iter_statistics_dump(stats_file)
250 curr_pos = stats_file.tell()