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

  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
video_processing_unittest.h 28 std::string trace_file = webrtc::test::OutputPath() + "VPMTrace.txt"; local
29 ASSERT_EQ(0, Trace::SetTraceFile(trace_file.c_str()));
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
trace_profiler.py 40 trace_file = '%s.json' % self._output_path
42 with codecs.open(trace_file, 'w', encoding='utf-8') as f:
45 print 'Trace saved as %s' % trace_file
48 return [trace_file]
android_systrace_profiler.py 61 trace_file = StringIO.StringIO()
62 trace_result.Serialize(trace_file)
66 z.writestr('trace.json', trace_file.getvalue())
android_traceview_profiler.py 50 for pid, trace_file in self._trace_files:
52 util.WaitFor(lambda: self._FileSize(trace_file) > 0, timeout=10)
53 output_files.append(trace_file)
  /external/chromium_org/tools/profile_chrome/
trace_packager.py 26 for trace_file in trace_files:
27 os.unlink(trace_file)
48 for trace_file in trace_files:
49 with open(trace_file) as f:
58 merge_candidates.append((trace_file, json_data))
65 for trace_file, json_data in merge_candidates[1:]:
69 os.unlink(trace_file)
chrome_controller.py 104 trace_file = self._trace_file.replace('/storage/emulated/0/', '/sdcard/')
105 host_file = os.path.join(os.path.curdir, os.path.basename(trace_file))
106 self._device.PullFile(trace_file, host_file)
  /external/chromium_org/content/browser/
browser_shutdown_profile_dumper.cc 80 base::FilePath trace_file = local
83 if (!trace_file.empty())
84 return trace_file;
browser_main_loop.cc 229 void OnStoppedStartupTracing(const base::FilePath& trace_file) {
230 VLOG(0) << "Completed startup tracing to " << trace_file.value();
1157 base::FilePath trace_file = command_line.GetSwitchValuePath( local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
video_rtp_play.cc 31 std::string trace_file = webrtc::test::OutputPath() + "receiverTestTrace.txt"; local
33 webrtc::Trace::SetTraceFile(trace_file.c_str());
video_rtp_play_mt.cc 67 std::string trace_file = webrtc::test::OutputPath() + "receiverTestTrace.txt"; local
69 webrtc::Trace::SetTraceFile(trace_file.c_str());
  /external/chromium_org/content/public/test/
browser_test_base.cc 293 base::FilePath trace_file = local
298 if (trace_file.empty())
299 trace_file = base::FilePath().AppendASCII("trace.json");
305 trace_file,
308 trace_file)));
  /art/runtime/
trace.cc 347 std::unique_ptr<File> trace_file; local
350 trace_file.reset(OS::CreateEmptyFile(trace_filename));
352 trace_file.reset(new File(trace_fd, "tracefile"));
353 trace_file->DisableAutoClose();
355 if (trace_file.get() == NULL) {
377 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, sampling_enabled);
471 Trace::Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled)
472 : trace_file_(trace_file), buf_(new uint8_t[buffer_size]()), flags_(flags),
trace.h 111 explicit Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled);
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 448 FILE* trace_file = fopen(filename.c_str(), "r"); local
449 if (!trace_file) {
453 while(!feof(trace_file)) {
456 if (fgets(line, kMaxLineLength, trace_file)) {
471 fclose(trace_file);
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_loopback.cc 72 std::string trace_file = local
74 error = ptrViE->SetTraceFile(trace_file.c_str());
vie_autotest_record.cc 93 std::string trace_file = local
95 error = ptrViE->SetTraceFile(trace_file.c_str());
vie_autotest_simulcast.cc 110 std::string trace_file = local
112 error = video_engine->SetTraceFile(trace_file.c_str());
vie_autotest_custom_call.cc 405 std::string trace_file = local
407 error = vie->SetTraceFile(trace_file.c_str());
    [all...]
  /external/chromium_org/v8/tools/
ll_prof.py 628 self.trace_file = open(trace_name, "r")
629 self.trace = mmap.mmap(self.trace_file.fileno(), 0, mmap.MAP_PRIVATE)
682 self.trace_file.close()
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
probe-event.c     [all...]

Completed in 2350 milliseconds