Home
last modified time | relevance | path

Searched refs:m_cursor_sp (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTraceDumper.cpp443 : m_cursor_sp(std::move(cursor_sp)), m_options(options), in TraceDumper()
445 s, m_options, *m_cursor_sp->GetExecutionContextRef().GetThreadSP())) { in TraceDumper()
448 m_cursor_sp->GoToId(*m_options.id); in TraceDumper()
450 m_cursor_sp->Seek(0, lldb::eTraceCursorSeekTypeBeginning); in TraceDumper()
452 m_cursor_sp->Seek(0, lldb::eTraceCursorSeekTypeEnd); in TraceDumper()
454 m_cursor_sp->SetForwards(m_options.forwards); in TraceDumper()
456 m_cursor_sp->Seek((m_options.forwards ? 1 : -1) * *m_options.skip, in TraceDumper()
463 item.id = m_cursor_sp->GetId(); in CreatRawTraceItem()
466 item.timestamp = m_cursor_sp->GetWallClockTime(); in CreatRawTraceItem()
537 ThreadSP thread_sp = m_cursor_sp->GetExecutionContextRef().GetThreadSP(); in DumpInstructions()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTraceDumper.h427 lldb::TraceCursorSP m_cursor_sp; variable