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()
410 const char *SBThread::GetQueueName() const { in GetQueueName()
426 lldb::queue_id_t SBThread::GetQueueID() const { in GetQueueID()
443 bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) { in GetInfoItemByPathAsString()
490 SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx, in ResumeNewPlan()
524 void SBThread::StepOver(lldb::RunMode stop_other_threads) { in StepOver()
531 void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) { in StepOver()
563 void SBThread::StepInto(lldb::RunMode stop_other_threads) { in StepInto()
569 void SBThread::StepInto(const char *target_name, in StepInto()
577 void SBThread::StepInto(const char *target_name, uint32_t end_line, in StepInto()
625 void SBThread::StepOut() { in StepOut()
632 void SBThread::StepOut(SBError &error) { in StepOut()
660 void SBThread::StepOutOfFrame(SBFrame &sb_frame) { in StepOutOfFrame()
667 void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) { in StepOutOfFrame()
704 void SBThread::StepInstruction(bool step_over) { in StepInstruction()
711 void SBThread::StepInstruction(bool step_over, SBError &error) { in StepInstruction()
733 void SBThread::RunToAddress(lldb::addr_t addr) { in RunToAddress()
740 void SBThread::RunToAddress(lldb::addr_t addr, SBError &error) { in RunToAddress()
768 SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame, in StepOverUntil()
884 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) { in StepUsingScriptedThreadPlan()
890 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name, in StepUsingScriptedThreadPlan()
899 SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name, in StepUsingScriptedThreadPlan()
937 SBError SBThread::JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line) { in JumpToLine()
957 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame()
974 SBError SBThread::UnwindInnermostExpression() { in UnwindInnermostExpression()
992 bool SBThread::Suspend() { in Suspend()
999 bool SBThread::Suspend(SBError &error) { in Suspend()
1019 bool SBThread::Resume() { in Resume()
1026 bool SBThread::Resume(SBError &error) { in Resume()
1047 bool SBThread::IsSuspended() { in IsSuspended()
1058 bool SBThread::IsStopped() { in IsStopped()
1069 SBProcess SBThread::GetProcess() { in GetProcess()
1085 uint32_t SBThread::GetNumFrames() { in GetNumFrames()
1102 SBFrame SBThread::GetFrameAtIndex(uint32_t idx) { in GetFrameAtIndex()
1121 lldb::SBFrame SBThread::GetSelectedFrame() { in GetSelectedFrame()
1141 lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) { in SetSelectedFrame()
1164 bool SBThread::EventIsThreadEvent(const SBEvent &event) { in EventIsThreadEvent()
1170 SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) { in GetStackFrameFromEvent()
1176 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent()
1182 bool SBThread::operator==(const SBThread &rhs) const { in operator ==()
1189 bool SBThread::operator!=(const SBThread &rhs) const { in operator !=()
1196 bool SBThread::GetStatus(SBStream &status) const { in GetStatus()
1212 bool SBThread::GetDescription(SBStream &description) const { in GetDescription()
1218 bool SBThread::GetDescription(SBStream &description, bool stop_format) const { in GetDescription()
1235 SBError SBThread::GetDescriptionWithFormat(const SBFormat &format, in GetDescriptionWithFormat()
1262 SBThread SBThread::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
1267 SBThread sb_origin_thread; in GetExtendedBacktraceThread()
1296 uint32_t SBThread::GetExtendedBacktraceOriginatingIndexID() { in GetExtendedBacktraceOriginatingIndexID()
1305 SBValue SBThread::GetCurrentException() { in GetCurrentException()
1315 SBThread SBThread::GetCurrentExceptionBacktrace() { in GetCurrentExceptionBacktrace()
1320 return SBThread(); in GetCurrentExceptionBacktrace()
1322 return SBThread(thread_sp->GetCurrentExceptionBacktrace()); in GetCurrentExceptionBacktrace()
1325 bool SBThread::SafeToCallFunctions() { in SafeToCallFunctions()
1334 lldb_private::Thread *SBThread::operator->() { in operator ->()
1338 lldb_private::Thread *SBThread::get() { in get()
1342 SBValue SBThread::GetSiginfo() { in GetSiginfo()