Searched refs:ScriptedThread (Results 1 – 7 of 7) sorted by relevance
26 void ScriptedThread::CheckInterpreterAndScriptObject() const { in CheckInterpreterAndScriptObject()31 llvm::Expected<std::shared_ptr<ScriptedThread>>32 ScriptedThread::Create(ScriptedProcess &process, in Create()77 return std::make_shared<ScriptedThread>(process, scripted_thread_interface, in Create()81 ScriptedThread::ScriptedThread(ScriptedProcess &process, in ScriptedThread() function in ScriptedThread89 ScriptedThread::~ScriptedThread() { DestroyThread(); } in ~ScriptedThread()91 const char *ScriptedThread::GetName() { in GetName()99 const char *ScriptedThread::GetQueueName() { in GetQueueName()107 void ScriptedThread::WillResume(StateType resume_state) {} in WillResume()109 void ScriptedThread::ClearStackFrames() { Thread::ClearStackFrames(); } in ClearStackFrames()[all …]
27 class ScriptedThread : public lldb_private::Thread {30 ScriptedThread(ScriptedProcess &process,34 ~ScriptedThread() override;36 static llvm::Expected<std::shared_ptr<ScriptedThread>>67 ScriptedThread(const ScriptedThread &) = delete;68 const ScriptedThread &operator=(const ScriptedThread &) = delete;
120 friend class ScriptedThread;
375 ScriptedThread::Create(*this, object_sp->GetAsGeneric()); in DoUpdateThreadList()
20 class ScriptedThread; variable99 friend class ScriptedThread; variable
76 friend class ScriptedThread;
549 SRCS+= Plugins/Process/scripted/ScriptedThread.cpp