Lines Matching refs:SBThread
53 const char *SBThread::GetBroadcasterClassName() { in GetBroadcasterClassName()
60 SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) { in SBThread() function in SBThread
64 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() function in SBThread
69 SBThread::SBThread(const SBThread &rhs) { in SBThread() function in SBThread
77 const lldb::SBThread &SBThread::operator=(const SBThread &rhs) { in operator =()
86 SBThread::~SBThread() = default;
88 lldb::SBQueue SBThread::GetQueue() const { in GetQueue()
109 bool SBThread::IsValid() const { in IsValid()
113 SBThread::operator bool() const { in operator bool()
130 void SBThread::Clear() { in Clear()
136 StopReason SBThread::GetStopReason() { in GetStopReason()
153 size_t SBThread::GetStopReasonDataCount() { in GetStopReasonDataCount()
210 uint64_t SBThread::GetStopReasonDataAtIndex(uint32_t idx) { in GetStopReasonDataAtIndex()
279 bool SBThread::GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream) { in GetStopReasonExtendedInfoAsJSON()
301 SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) { in GetStopReasonExtendedBacktraces()
324 size_t SBThread::GetStopDescription(char *dst, size_t dst_len) { in GetStopDescription()
352 SBValue SBThread::GetStopReturnValue() { in GetStopReturnValue()
372 void SBThread::SetThread(const ThreadSP &lldb_object_sp) { in SetThread()
376 lldb::tid_t SBThread::GetThreadID() const { in GetThreadID()
385 uint32_t SBThread::GetIndexID() const { in GetIndexID()
394 const char *SBThread::GetName() const { in GetName()
411 const char *SBThread::GetQueueName() const { in GetQueueName()
428 lldb::queue_id_t SBThread::GetQueueID() const { in GetQueueID()
445 bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) { in GetInfoItemByPathAsString()
492 SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx, in ResumeNewPlan()
526 void SBThread::StepOver(lldb::RunMode stop_other_threads) { in StepOver()
533 void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) { in StepOver()
565 void SBThread::StepInto(lldb::RunMode stop_other_threads) { in StepInto()
571 void SBThread::StepInto(const char *target_name, in StepInto()
579 void SBThread::StepInto(const char *target_name, uint32_t end_line, in StepInto()
627 void SBThread::StepOut() { in StepOut()
634 void SBThread::StepOut(SBError &error) { in StepOut()
662 void SBThread::StepOutOfFrame(SBFrame &sb_frame) { in StepOutOfFrame()
669 void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) { in StepOutOfFrame()
706 void SBThread::StepInstruction(bool step_over) { in StepInstruction()
713 void SBThread::StepInstruction(bool step_over, SBError &error) { in StepInstruction()
735 void SBThread::RunToAddress(lldb::addr_t addr) { in RunToAddress()
742 void SBThread::RunToAddress(lldb::addr_t addr, SBError &error) { in RunToAddress()
770 SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame, in StepOverUntil()
888 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) { in StepUsingScriptedThreadPlan()
894 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name, in StepUsingScriptedThreadPlan()
903 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name, in StepUsingScriptedThreadPlan()
941 SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) { in JumpToLine()
961 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame()
978 SBError SBThread::UnwindInnermostExpression() { in UnwindInnermostExpression()
996 bool SBThread::Suspend() { in Suspend()
1003 bool SBThread::Suspend(SBError &error) { in Suspend()
1023 bool SBThread::Resume() { in Resume()
1030 bool SBThread::Resume(SBError &error) { in Resume()
1051 bool SBThread::IsSuspended() { in IsSuspended()
1062 bool SBThread::IsStopped() { in IsStopped()
1073 SBProcess SBThread::GetProcess() { in GetProcess()
1089 uint32_t SBThread::GetNumFrames() { in GetNumFrames()
1106 SBFrame SBThread::GetFrameAtIndex(uint32_t idx) { in GetFrameAtIndex()
1125 lldb::SBFrame SBThread::GetSelectedFrame() { in GetSelectedFrame()
1144 lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) { in SetSelectedFrame()
1167 bool SBThread::EventIsThreadEvent(const SBEvent &event) { in EventIsThreadEvent()
1173 SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) { in GetStackFrameFromEvent()
1179 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent()
1185 bool SBThread::operator==(const SBThread &rhs) const { in operator ==()
1192 bool SBThread::operator!=(const SBThread &rhs) const { in operator !=()
1199 bool SBThread::GetStatus(SBStream &status) const { in GetStatus()
1215 bool SBThread::GetDescription(SBStream &description) const { in GetDescription()
1221 bool SBThread::GetDescription(SBStream &description, bool stop_format) const { in GetDescription()
1241 SBThread SBThread::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
1246 SBThread sb_origin_thread; in GetExtendedBacktraceThread()
1275 uint32_t SBThread::GetExtendedBacktraceOriginatingIndexID() { in GetExtendedBacktraceOriginatingIndexID()
1284 SBValue SBThread::GetCurrentException() { in GetCurrentException()
1294 SBThread SBThread::GetCurrentExceptionBacktrace() { in GetCurrentExceptionBacktrace()
1299 return SBThread(); in GetCurrentExceptionBacktrace()
1301 return SBThread(thread_sp->GetCurrentExceptionBacktrace()); in GetCurrentExceptionBacktrace()
1304 bool SBThread::SafeToCallFunctions() { in SafeToCallFunctions()
1313 lldb_private::Thread *SBThread::operator->() { in operator ->()
1317 lldb_private::Thread *SBThread::get() { in get()
1321 SBValue SBThread::GetSiginfo() { in GetSiginfo()