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

  /external/webrtc/webrtc/modules/video_coding/test/
video_rtp_play.cc 33 std::string trace_file = webrtc::test::OutputPath() + "receiverTestTrace.txt"; local
35 webrtc::Trace::SetTraceFile(trace_file.c_str());
  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.h 30 std::string trace_file = webrtc::test::OutputPath() + "VPMTrace.txt"; local
31 ASSERT_EQ(0, Trace::SetTraceFile(trace_file.c_str()));
  /test/vts/compilation_tools/vtsc/test/golden/PROFILER/
MemoryTest.profiler.cpp 35 char trace_file[PATH_MAX]; local
36 sprintf(trace_file, "%s/%s_%s", TRACEFILEPREFIX, package, version);
37 VtsProfilingInterface& profiler = VtsProfilingInterface::getInstance(trace_file);
Nfc.profiler.cpp 35 char trace_file[PATH_MAX]; local
36 sprintf(trace_file, "%s/%s_%s", TRACEFILEPREFIX, package, version);
37 VtsProfilingInterface& profiler = VtsProfilingInterface::getInstance(trace_file);
NfcClientCallback.profiler.cpp 35 char trace_file[PATH_MAX]; local
36 sprintf(trace_file, "%s/%s_%s", TRACEFILEPREFIX, package, version);
37 VtsProfilingInterface& profiler = VtsProfilingInterface::getInstance(trace_file);
TestMsgQ.profiler.cpp 42 char trace_file[PATH_MAX]; local
43 sprintf(trace_file, "%s/%s_%s", TRACEFILEPREFIX, package, version);
44 VtsProfilingInterface& profiler = VtsProfilingInterface::getInstance(trace_file);
Bar.profiler.cpp 43 char trace_file[PATH_MAX]; local
44 sprintf(trace_file, "%s/%s_%s", TRACEFILEPREFIX, package, version);
45 VtsProfilingInterface& profiler = VtsProfilingInterface::getInstance(trace_file);
    [all...]
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 299 std::string trace_file = StringPrintf("/data/misc/trace/%s.trace.bin", proc_name.c_str()); local
300 Trace::Start(trace_file.c_str(),
  /test/vts/utils/native/trace_processor/
VtsTraceProcessor.cpp 40 bool VtsTraceProcessor::ParseBinaryTrace(const string& trace_file,
44 open(trace_file.c_str(), O_RDONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
46 cerr << "Can not open trace file: " << trace_file
69 bool VtsTraceProcessor::ParseTextTrace(const string& trace_file,
71 ifstream in(trace_file, std::ios::in);
97 void VtsTraceProcessor::ParseTrace(const string& trace_file) {
99 if (!ParseBinaryTrace(trace_file, false, false, &profiling_msg)) {
100 cerr << __func__ << ": Failed to parse trace file: " << trace_file << endl;
127 void VtsTraceProcessor::ConvertTrace(const string& trace_file) {
129 if (!ParseTextTrace(trace_file, &profiling_msg))
229 string trace_file = path; local
311 string trace_file = trace_dir; local
422 string trace_file = trace_file_dir; local
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 584 FILE* trace_file = fopen(filename.c_str(), "r"); local
585 if (!trace_file) {
589 while (!feof(trace_file)) {
592 if (fgets(line, kMaxLineLength, trace_file)) {
607 fclose(trace_file);
  /art/runtime/
trace.cc 335 std::unique_ptr<File> trace_file; local
338 trace_file.reset(OS::CreateEmptyFileWriteOnly(trace_filename));
340 trace_file.reset(new File(trace_fd, "tracefile"));
341 trace_file->DisableAutoClose();
343 if (trace_file.get() == nullptr) {
368 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
593 Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
595 : trace_file_(trace_file),
    [all...]
runtime.cc 184 std::string trace_file; member in struct:art::TraceConfig
800 if (trace_config_.get() != nullptr && trace_config_->trace_file != "") {
802 Trace::Start(trace_config_->trace_file.c_str(),
    [all...]
  /external/fio/t/
btrace2fio.c 43 struct trace_file { struct
78 struct trace_file *files;
277 struct trace_file *f;
778 p->files = malloc(sizeof(struct trace_file));
1034 static int trace_needs_swap(const char *trace_file, int *swap)
1041 fd = open(trace_file, O_RDONLY);
  /frameworks/native/cmds/atrace/
atrace.cpp 1079 static const std::string trace_file = "trace_marker"; local
    [all...]
  /external/v8/src/
d8.cc 2880 std::ofstream trace_file; local
    [all...]

Completed in 495 milliseconds