HomeSort by relevance Sort by last modified time
    Searched refs:_tmp_output_file (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
sample_profiler.py 19 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
22 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
42 self._tmp_output_file.close()
50 self._tmp_output_file.flush()
52 with open(self._tmp_output_file.name) as f:
tcpdump_profiler.py 64 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
68 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
82 self._tmp_output_file.close()
88 self._tmp_output_file.flush()
90 with open(self._tmp_output_file.name) as f:
vtune_profiler.py 22 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
30 cmd, stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
49 self._tmp_output_file.close()
77 self._tmp_output_file.flush()
79 with open(self._tmp_output_file.name) as f:
strace_profiler.py 168 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
171 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
186 self._tmp_output_file.close()
191 self._tmp_output_file.flush()
193 with open(self._tmp_output_file.name) as f:
perf_profiler.py 73 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
92 stdout=self._tmp_output_file, stderr=subprocess.STDOUT)
121 self._tmp_output_file.close()
152 self._tmp_output_file.flush()
154 with open(self._tmp_output_file.name) as f:
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
desktop_browser_backend.py 40 self._tmp_output_file = None
204 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
206 args, stdout=self._tmp_output_file, stderr=subprocess.STDOUT, env=env)
235 if not self._tmp_output_file:
242 self._tmp_output_file.flush()
244 with open(self._tmp_output_file.name) as f:
359 if self._tmp_output_file:
360 self._tmp_output_file.close()
361 self._tmp_output_file = None

Completed in 151 milliseconds