Home
last modified time | relevance | path

Searched refs:pathserv (Results 1 – 12 of 12) sorted by relevance

/dports/graphics/py-pyglet/pyglet-1.5.21/tools/ffmpeg/
H A Dfs.py62 return pathserv
73 return pathserv
121 for path in pathserv.dirs_to_create():
124 dump_pyglet_info(pathserv)
125 copy_samples_version_to_dbg(pathserv)
128 dump_hg_changeset(pathserv)
129 return pathserv
132 def dump_pyglet_info(pathserv): argument
149 def dump_hg_changeset(pathserv): argument
189 def load_session_playlist(pathserv): argument
[all …]
H A Dsummarize.py27 pathserv = fs.get_path_info_for_active_session()
38 summarize(pathserv, count_bads)
49 def summarize(pathserv, count_bads): argument
50 conf = fs.get_session_configuration(pathserv)
57 session = pathserv.session
59 filename = pathserv.special_raw_filename("samples_version")
97 text = reports.fragment_crash_retries(pathserv)
115 report.report_sample(pathserv, sample, "all")
129 src = pathserv.special_raw_filename("pyglet_info")
130 dst = pathserv.special_report_filename("pyglet_info")
[all …]
H A Dretry_crashed.py35 pathserv = fs.get_path_info_for_active_session()
44 crashes_light_file = pathserv.special_raw_filename("crashes_light")
48 retry_crashed(pathserv, max_retries)
52 def retry_crashed(pathserv, max_retries=5): argument
53 crashes_light_file = pathserv.special_raw_filename("crashes_light")
59 playlist_gen = pathserv.session_playlist_generator()
66 if sample_crashed(pathserv, sample):
74 playlist = pathserv.playlist_generator_from_samples_iterable(samples_to_consider)
75 playmany.core_play_many(pathserv, playlist)
80 def sample_crashed(pathserv, sample): argument
[all …]
H A Dextractors.py46 def __init__(self, pathserv, fn_count_bads): argument
47 self.pathserv = pathserv
59 dbg_file = self.pathserv.dbg_filename(sample)
106 def single_session_overall_defect_counters(pathserv, fn_count_bads): argument
107 overall = OverallDefectsCounter(pathserv, fn_count_bads)
108 samples = {e[0] for e in pathserv.session_playlist_generator()}
125 def __init__(self, pathserv, pathserv_other, fn_count_bads): argument
126 self.pathserv = pathserv
130 samples = {e for e in fs.load_session_playlist(pathserv)}
139 overall_counters = cls(pathserv, fn_count_bads)
H A Dplaymany.py26 pathserv = fs.get_path_info_for_active_session()
35 play_many(pathserv, timeout=120)
43 def play_many(pathserv, timeout=120): argument
47 conf = fs.get_session_configuration(pathserv)
54 playlist_gen = pathserv.session_playlist_generator()
55 core_play_many(pathserv, playlist_gen, timeout=timeout)
58 def core_play_many(pathserv, playlist_gen, timeout=120): argument
60 dbg_file = pathserv.dbg_filename(sample)
H A Drun_test_suite.py39 pathserv = fs.get_path_info_for_active_session()
47 pathserv = fs.new_session_for_samples_dir(session, samples_dir)
54 print("Results will be write to directory: % s" % pathserv.session_dir)
56 playmany.play_many(pathserv)
58 retry_crashed.retry_crashed(pathserv)
61 summarize.summarize(pathserv, count_bads)
68 fs.update_configuration(pathserv, modify)
H A Dcompare.py22 pathserv = fs.get_path_info_for_active_session()
40 compare_sessions_to_file(pathserv, pathserv_other, outdir)
44 def compare_sessions_to_file(pathserv, pathserv_other, outdir): argument
49 (pathserv.session, pathserv_other.session))
50 text = compare_sessions_to_text(pathserv, pathserv_other)
54 def compare_sessions_to_text(pathserv, pathserv_other): argument
57 comparison = extractors.CollectSessionComparisonData(pathserv,
H A Dtimeline.py41 pathserv = fs.get_path_info_for_active_session()
50 save_timeline(pathserv, sample, output_format)
56 def save_timeline(pathserv, sample, output_format): argument
57 dbg_file = pathserv.dbg_filename(sample)
63 outfile = pathserv.report_filename(sample, "timeline.pkl", False)
66 outfile = pathserv.report_filename(sample, "timeline.csv", False)
H A Dreport.py37 pathserv = fs.get_path_info_for_active_session()
45 report_sample(pathserv, sample, report_name)
48 def report_sample(pathserv, sample, report_name): argument
49 dbg_file = pathserv.dbg_filename(sample)
50 outfile = pathserv.report_filename(sample, report_name)
H A Dbokeh_timeline.py39 pathserv = fs.get_path_info_for_active_session()
47 bokeh_render_timeline(pathserv, sample)
50 def bokeh_render_timeline(pathserv, sample): argument
51 infile = pathserv.report_filename(sample, "timeline.pkl", False)
53 timeline.save_timeline(pathserv, sample, ".pkl")
57 outfile = pathserv.report_filename(sample, "timeline.html", False)
H A Dconfigure.py185 pathserv = fs.get_path_info_for_active_session()
186 conf = fs.json_load(pathserv.configuration_filename())
189 print("session:", pathserv.session)
H A Dreports.py81 def fragment_crash_retries(pathserv): argument
82 crashes_light_file = pathserv.special_raw_filename("crashes_light")
146 session = sd.overall_counters.pathserv.session
151 session_o = sd.overall_counters_o.pathserv.session