Searched refs:trace_file_path (Results 1 – 3 of 3) sorted by relevance
/external/OpenCSD/decoder/tests/source/ |
D | c_api_pkt_print_test.c | 961 char trace_file_path[MAX_TRACE_FILE_PATH_LEN]; in main() local 977 strcpy(trace_file_path,usr_snapshot_path); in main() 979 strcpy(trace_file_path,default_base_snapshot_path); in main() 980 strcat(trace_file_path,selected_snapshot); in main() 981 strcat(trace_file_path,trace_data_filename); in main() 982 printf("opening %s trace data file\n",trace_file_path); in main() 983 trace_data = fopen(trace_file_path,"rb"); in main() 1023 printf("Unable to open file %s to process trace data\n", trace_file_path); in main()
|
/external/perfetto/test/stress_test/ |
D | stress_test.cc | 208 auto trace_file_path = result_dir + "/trace"; in RunConfig() local 210 {bin_dir + "/perfetto", "-c", "-", "-o", trace_file_path.c_str()}); in RunConfig() 218 remove(trace_file_path.c_str()); in RunConfig() 247 ReadbackTrace(trace_file_path, &ctx); in RunConfig() 273 void TestHarness::ReadbackTrace(const std::string& trace_file_path, in ReadbackTrace() argument 277 auto fd = base::OpenFile(trace_file_path.c_str(), O_RDONLY); in ReadbackTrace()
|
/external/perfetto/src/trace_processor/ |
D | trace_processor_shell.cc | 662 std::string trace_file_path; member 850 command_line_options.trace_file_path = argv[optind]; in ParseCommandLineOptions() 868 util::Status LoadTrace(const std::string& trace_file_path, double* size_mb) { in LoadTrace() argument 870 ReadTrace(g_tp, trace_file_path.c_str(), [&size_mb](size_t parsed_size) { in LoadTrace() 876 trace_file_path.c_str(), read_status.c_message()); in LoadTrace() 1064 if (!options.trace_file_path.empty()) { in TraceProcessorMain() 1067 RETURN_IF_ERROR(LoadTrace(options.trace_file_path, &size_mb)); in TraceProcessorMain()
|