Lines Matching defs:thread
46 SBTraceCursor SBTrace::CreateNewCursor(SBError &error, SBThread &thread) {
47 LLDB_INSTRUMENT_VA(this, error, thread);
53 if (!thread.get()) {
54 error = Status::FromErrorString("error: invalid thread");
59 m_opaque_sp->CreateNewCursor(*thread.get())) {
106 SBError SBTrace::Start(const SBThread &thread,
108 LLDB_INSTRUMENT_VA(this, thread, configuration);
115 m_opaque_sp->Start(std::vector<lldb::tid_t>{thread.GetThreadID()},
133 SBError SBTrace::Stop(const SBThread &thread) {
134 LLDB_INSTRUMENT_VA(this, thread);
138 else if (llvm::Error err = m_opaque_sp->Stop({thread.GetThreadID()}))