Lines Matching refs:trace
220 MemoryBuffer &trace = **trace_or_error; in DecodeTraceFile() local
224 reinterpret_cast<uint8_t *>(const_cast<char *>(trace.getBufferStart())), in DecodeTraceFile()
225 trace.getBufferSize()); in DecodeTraceFile()
231 DecodeLiveThread(Thread &thread, TraceIntelPT &trace, size_t &raw_trace_size) { in DecodeLiveThread() argument
233 trace.GetLiveThreadBuffer(thread.GetID()); in DecodeLiveThread()
237 if (Expected<pt_cpu> cpu_info = trace.GetCPUInfo()) in DecodeLiveThread()
238 return DecodeInMemoryTrace(*thread.GetProcess(), trace, in DecodeLiveThread()
251 const lldb::ThreadPostMortemTraceSP &trace_thread, TraceIntelPT &trace) in PostMortemThreadDecoder() argument
252 : m_trace_thread(trace_thread), m_trace(trace) {} in PostMortemThreadDecoder()
267 LiveThreadDecoder::LiveThreadDecoder(Thread &thread, TraceIntelPT &trace) in LiveThreadDecoder() argument
268 : m_thread_sp(thread.shared_from_this()), m_trace(trace) {} in LiveThreadDecoder()