Home
last modified time | relevance | path

Searched refs:trace_file_path (Results 1 – 4 of 4) sorted by relevance

/external/OpenCSD/decoder/tests/source/
Dc_api_pkt_print_test.c1092 char trace_file_path[MAX_TRACE_FILE_PATH_LEN]; in main() local
1108 strcpy(trace_file_path,usr_snapshot_path); in main()
1110 strcpy(trace_file_path,default_base_snapshot_path); in main()
1111 strcat(trace_file_path,selected_snapshot); in main()
1112 strcat(trace_file_path,trace_data_filename); in main()
1113 printf("opening %s trace data file\n",trace_file_path); in main()
1114 trace_data = fopen(trace_file_path,"rb"); in main()
1157 printf("Unable to open file %s to process trace data\n", trace_file_path); in main()
/external/perfetto/test/stress_test/
Dstress_test.cc210 auto trace_file_path = result_dir + "/trace"; in RunConfig() local
212 {bin_dir + "/perfetto", "-c", "-", "-o", trace_file_path.c_str()}); in RunConfig()
220 remove(trace_file_path.c_str()); in RunConfig()
249 ReadbackTrace(trace_file_path, &ctx); in RunConfig()
275 void TestHarness::ReadbackTrace(const std::string& trace_file_path, in ReadbackTrace() argument
279 auto fd = base::OpenFile(trace_file_path.c_str(), O_RDONLY); in ReadbackTrace()
/external/mesa3d/bin/
Dflamegraph_map_lp_jit.py41 def parse_traces(trace_file_path: Path):
45 with open(trace_file_path) as trace_file:
/external/perfetto/src/trace_processor/
Dtrace_processor_shell.cc696 std::string trace_file_path; member
1189 command_line_options.trace_file_path = argv[optind]; in ParseCommandLineOptions()
1213 base::Status LoadTrace(const std::string& trace_file_path, double* size_mb) { in LoadTrace() argument
1215 g_tp, trace_file_path.c_str(), [&size_mb](size_t parsed_size) { in LoadTrace()
1222 trace_file_path.c_str(), read_status.c_message()); in LoadTrace()
1849 if (!options.trace_file_path.empty()) { in TraceProcessorMain()
1852 RETURN_IF_ERROR(LoadTrace(options.trace_file_path, &size_mb)); in TraceProcessorMain()