Searched refs:trace_file (Results 1 – 3 of 3) sorted by relevance
/test/vts/utils/native/trace_processor/ |
D | VtsTraceProcessor.cpp | 43 bool VtsTraceProcessor::ParseBinaryTrace(const string& trace_file, in ParseBinaryTrace() argument 48 open(trace_file.c_str(), O_RDONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in ParseBinaryTrace() 50 cerr << "Can not open trace file: " << trace_file in ParseBinaryTrace() 77 bool VtsTraceProcessor::ParseTextTrace(const string& trace_file, in ParseTextTrace() argument 79 ifstream in(trace_file, std::ios::in); in ParseTextTrace() 105 void VtsTraceProcessor::ParseTrace(const string& trace_file) { in ParseTrace() argument 107 if (!ParseBinaryTrace(trace_file, false, false, false, &profiling_msg)) { in ParseTrace() 108 cerr << __func__ << ": Failed to parse trace file: " << trace_file << endl; in ParseTrace() 135 void VtsTraceProcessor::ConvertTrace(const string& trace_file) { in ConvertTrace() argument 137 if (!ParseTextTrace(trace_file, &profiling_msg)) { in ConvertTrace() [all …]
|
D | VtsTraceProcessor.h | 45 void ProcessTraceForLatencyProfiling(const std::string& trace_file); 61 void ParseTrace(const std::string& trace_file); 64 void ConvertTrace(const std::string& trace_file); 76 bool ParseBinaryTrace(const std::string& trace_file, bool ignore_timestamp, 82 bool ParseTextTrace(const std::string& trace_file, 90 void CleanupTraceFile(const std::string& trace_file); 160 void GetHalTraceSummary(const std::string& trace_file,
|
/test/vts/utils/python/profiling/ |
D | profiling_utils.py | 232 def _ParseTraceData(self, trace_file, measure_api_coverage): argument 255 (trace_processor_lib, trace_processor_binary, trace_file)
|