Home
last modified time | relevance | path

Searched refs:TraceCursor (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTraceCursor.cpp17 TraceCursor::TraceCursor(lldb::ThreadSP thread_sp) in TraceCursor() function in TraceCursor
20 ExecutionContextRef &TraceCursor::GetExecutionContextRef() { in GetExecutionContextRef()
24 void TraceCursor::SetGranularity( in SetGranularity()
29 void TraceCursor::SetIgnoreErrors(bool ignore_errors) { in SetIgnoreErrors()
33 void TraceCursor::SetForwards(bool forwards) { m_forwards = forwards; } in SetForwards()
35 bool TraceCursor::IsForwards() const { return m_forwards; } in IsForwards()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.cpp22 : TraceCursor(thread_sp), m_decoded_thread_sp(decoded_thread_sp) { in TraceCursorIntelPT()
62 case TraceCursor::SeekType::Set: in Seek()
65 case TraceCursor::SeekType::End: in Seek()
68 case TraceCursor::SeekType::Current: in Seek()
H A DTraceCursorIntelPT.h18 class TraceCursorIntelPT : public TraceCursor {
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DTraceCursor.h73 class TraceCursor {
88 TraceCursor(lldb::ThreadSP thread_sp);
90 virtual ~TraceCursor() = default;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h232 class TraceCursor; variable
446 typedef std::unique_ptr<lldb_private::TraceCursor> TraceCursorUP;
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp2136 return cursor_up->Seek(m_options.m_skip, TraceCursor::SeekType::Set); in HandleOneThread()
2137 return -cursor_up->Seek(-m_options.m_skip, TraceCursor::SeekType::End); in HandleOneThread()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile631 SRCS+= Target/TraceCursor.cpp