Searched refs:trace_file (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Dvideo_processing_unittest.h28 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/
H A Dtrace_profiler.py40 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]
H A Dandroid_systrace_profiler.py61 trace_file = StringIO.StringIO()
62 trace_result.Serialize(trace_file)
66 z.writestr('trace.json', trace_file.getvalue())
H A Dandroid_traceview_profiler.py50 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/
H A Dtrace_packager.py26 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)
H A Dchrome_controller.py104 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/webrtc/src/system_wrappers/source/
H A Dtrace_unittest.cc26 std::string trace_file = webrtc::test::OutputPath() + local
28 Trace::SetTraceFile(trace_file.c_str());
H A Dcpu_wrapper_unittest.cc35 std::string trace_file = webrtc::test::OutputPath() + local
37 Trace::SetTraceFile(trace_file.c_str());
/external/chromium_org/content/browser/
H A Dbrowser_shutdown_profile_dumper.cc80 base::FilePath trace_file = local
83 if (!trace_file.empty())
84 return trace_file;
H A Dbrowser_main_loop.cc229 void OnStoppedStartupTracing(const base::FilePath& trace_file) { argument
230 VLOG(0) << "Completed startup tracing to " << trace_file.value();
1157 base::FilePath trace_file = command_line.GetSwitchValuePath( local
1159 // trace_file = "none" means that startup events will show up for the next
1162 if (trace_file == base::FilePath().AppendASCII("none"))
1163 return trace_file;
1165 if (trace_file.empty()) {
1167 TracingControllerAndroid::GenerateTracingFilePath(&trace_file);
1170 trace_file = base::FilePath().AppendASCII("chrometrace.log");
1174 return trace_file;
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dvideo_rtp_play.cc31 std::string trace_file = webrtc::test::OutputPath() + "receiverTestTrace.txt"; local
33 webrtc::Trace::SetTraceFile(trace_file.c_str());
H A Dvideo_rtp_play_mt.cc67 std::string trace_file = webrtc::test::OutputPath() + "receiverTestTrace.txt"; local
69 webrtc::Trace::SetTraceFile(trace_file.c_str());
/external/chromium_org/content/public/test/
H A Dbrowser_test_base.cc293 base::FilePath trace_file = local
298 if (trace_file.empty())
299 trace_file = base::FilePath().AppendASCII("trace.json");
305 trace_file,
308 trace_file)));
/external/chromium_org/tools/telemetry/examples/
H A Dmeasure_trace.py56 with open(args[0]) as trace_file:
58 json.load(trace_file))
/external/chromium_org/tools/cygprofile/
H A Dmergetraces.py205 for trace_file in args:
208 ": " + trace_file + ":\n")
210 trace_lines = map(string.rstrip, open(trace_file).readlines())
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.cc448 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/
H A Dvie_autotest_loopback.cc72 std::string trace_file = local
74 error = ptrViE->SetTraceFile(trace_file.c_str());
H A Dvie_autotest_record.cc93 std::string trace_file = local
95 error = ptrViE->SetTraceFile(trace_file.c_str());
H A Dvie_autotest_simulcast.cc110 std::string trace_file = local
112 error = video_engine->SetTraceFile(trace_file.c_str());
H A Dvie_autotest_custom_call.cc405 std::string trace_file = local
407 error = vie->SetTraceFile(trace_file.c_str());
/external/chromium_org/v8/tools/
H A Dll_prof.py628 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()
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dprobe-event.c1565 static int open_probe_events(const char *trace_file, bool readwrite, argument
1578 ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);

Completed in 397 milliseconds