Lines Matching refs:SBThread

51 const char *SBThread::GetBroadcasterClassName() {  in GetBroadcasterClassName()
58 SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) {} in SBThread() function in SBThread
60 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() function in SBThread
63 SBThread::SBThread(const SBThread &rhs) in SBThread() function in SBThread
70 const lldb::SBThread &SBThread::operator=(const SBThread &rhs) { in operator =()
79 SBThread::~SBThread() {} in ~SBThread()
81 lldb::SBQueue SBThread::GetQueue() const { in GetQueue()
110 bool SBThread::IsValid() const { in IsValid()
125 void SBThread::Clear() { m_opaque_sp->Clear(); } in Clear()
127 StopReason SBThread::GetStopReason() { in GetStopReason()
154 size_t SBThread::GetStopReasonDataCount() { in GetStopReasonDataCount()
207 uint64_t SBThread::GetStopReasonDataAtIndex(uint32_t idx) { in GetStopReasonDataAtIndex()
272 bool SBThread::GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream) { in GetStopReasonExtendedInfoAsJSON()
292 SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) { in GetStopReasonExtendedBacktraces()
313 size_t SBThread::GetStopDescription(char *dst, size_t dst_len) { in GetStopDescription()
424 SBValue SBThread::GetStopReturnValue() { in GetStopReturnValue()
454 void SBThread::SetThread(const ThreadSP &lldb_object_sp) { in SetThread()
458 lldb::tid_t SBThread::GetThreadID() const { in GetThreadID()
465 uint32_t SBThread::GetIndexID() const { in GetIndexID()
472 const char *SBThread::GetName() const { in GetName()
497 const char *SBThread::GetQueueName() const { in GetQueueName()
522 lldb::queue_id_t SBThread::GetQueueID() const { in GetQueueID()
546 bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) { in GetInfoItemByPathAsString()
601 SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx, in ResumeNewPlan()
635 void SBThread::StepOver(lldb::RunMode stop_other_threads) { in StepOver()
640 void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) { in StepOver()
677 void SBThread::StepInto(lldb::RunMode stop_other_threads) { in StepInto()
681 void SBThread::StepInto(const char *target_name, in StepInto()
687 void SBThread::StepInto(const char *target_name, uint32_t end_line, in StepInto()
742 void SBThread::StepOut() { in StepOut()
747 void SBThread::StepOut(SBError &error) { in StepOut()
779 void SBThread::StepOutOfFrame(SBFrame &sb_frame) { in StepOutOfFrame()
784 void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) { in StepOutOfFrame()
836 void SBThread::StepInstruction(bool step_over) { in StepInstruction()
841 void SBThread::StepInstruction(bool step_over, SBError &error) { in StepInstruction()
867 void SBThread::RunToAddress(lldb::addr_t addr) { in RunToAddress()
872 void SBThread::RunToAddress(lldb::addr_t addr, SBError &error) { in RunToAddress()
904 SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame, in StepOverUntil()
1030 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) { in StepUsingScriptedThreadPlan()
1034 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name, in StepUsingScriptedThreadPlan()
1073 SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) { in JumpToLine()
1097 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame()
1119 SBError SBThread::UnwindInnermostExpression() { in UnwindInnermostExpression()
1141 bool SBThread::Suspend() { in Suspend()
1146 bool SBThread::Suspend(SBError &error) { in Suspend()
1171 bool SBThread::Resume() { in Resume()
1176 bool SBThread::Resume(SBError &error) { in Resume()
1202 bool SBThread::IsSuspended() { in IsSuspended()
1211 bool SBThread::IsStopped() { in IsStopped()
1220 SBProcess SBThread::GetProcess() { in GetProcess()
1244 uint32_t SBThread::GetNumFrames() { in GetNumFrames()
1269 SBFrame SBThread::GetFrameAtIndex(uint32_t idx) { in GetFrameAtIndex()
1301 lldb::SBFrame SBThread::GetSelectedFrame() { in GetSelectedFrame()
1333 lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) { in SetSelectedFrame()
1368 bool SBThread::EventIsThreadEvent(const SBEvent &event) { in EventIsThreadEvent()
1372 SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) { in GetStackFrameFromEvent()
1376 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent()
1380 bool SBThread::operator==(const SBThread &rhs) const { in operator ==()
1385 bool SBThread::operator!=(const SBThread &rhs) const { in operator !=()
1390 bool SBThread::GetStatus(SBStream &status) const { in GetStatus()
1404 bool SBThread::GetDescription(SBStream &description) const { in GetDescription()
1408 bool SBThread::GetDescription(SBStream &description, bool stop_format) const { in GetDescription()
1426 SBThread SBThread::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
1430 SBThread sb_origin_thread; in GetExtendedBacktraceThread()
1480 uint32_t SBThread::GetExtendedBacktraceOriginatingIndexID() { in GetExtendedBacktraceOriginatingIndexID()
1487 SBValue SBThread::GetCurrentException() { in GetCurrentException()
1494 SBThread SBThread::GetCurrentExceptionBacktrace() { in GetCurrentExceptionBacktrace()
1496 if (!thread_sp) return SBThread(); in GetCurrentExceptionBacktrace()
1498 return SBThread(thread_sp->GetCurrentExceptionBacktrace()); in GetCurrentExceptionBacktrace()
1501 bool SBThread::SafeToCallFunctions() { in SafeToCallFunctions()
1508 lldb_private::Thread *SBThread::operator->() { in operator ->()
1516 lldb_private::Thread *SBThread::get() { in get()