Home
last modified time | relevance | path

Searched refs:GetTimestampCounter (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.cpp88 Optional<uint64_t> TraceCursorIntelPT::GetTimestampCounter() { in GetTimestampCounter() function in TraceCursorIntelPT
89 return m_decoded_thread_sp->GetInstructions()[m_pos].GetTimestampCounter(); in GetTimestampCounter()
H A DTraceCursorIntelPT.h31 llvm::Optional<uint64_t> GetTimestampCounter() override;
H A DDecodedThread.h95 llvm::Optional<uint64_t> GetTimestampCounter() const;
H A DDecodedThread.cpp51 Optional<uint64_t> IntelPTInstruction::GetTimestampCounter() const { in GetTimestampCounter() function in IntelPTInstruction
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DTraceCursor.h190 virtual llvm::Optional<uint64_t> GetTimestampCounter() = 0;
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTraceInstructionDumper.cpp186 if (Optional<uint64_t> timestamp = m_cursor_up->GetTimestampCounter()) in DumpInstructions()