Lines Matching refs:bundle_description
66 const json::Value &bundle_description, StringRef bundle_dir, in CreateInstanceForTraceBundle() argument
68 return TraceIntelPTBundleLoader(debugger, bundle_description, in CreateInstanceForTraceBundle()
84 JSONTraceBundleDescription &bundle_description, ArrayRef<ProcessSP> traced_processes, in CreateInstanceForPostmortemTrace() argument
86 TraceIntelPTSP trace_sp(new TraceIntelPT(bundle_description, traced_processes)); in CreateInstanceForPostmortemTrace()
87 trace_sp->m_storage.tsc_conversion = bundle_description.tsc_perf_zero_conversion; in CreateInstanceForPostmortemTrace()
89 if (bundle_description.cpus) { in CreateInstanceForPostmortemTrace()
92 for (const JSONCpu &cpu : *bundle_description.cpus) { in CreateInstanceForPostmortemTrace()
103 for (const JSONProcess &process : bundle_description.processes) in CreateInstanceForPostmortemTrace()
124 TraceIntelPT::TraceIntelPT(JSONTraceBundleDescription &bundle_description, in TraceIntelPT() argument
126 : Trace(traced_processes, bundle_description.GetCpuIds()), in TraceIntelPT()
127 m_cpu_info(bundle_description.cpu_info) {} in TraceIntelPT()