Home
last modified time | relevance | path

Searched refs:SBEvent (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBEvent.cpp24 SBEvent::SBEvent() { LLDB_INSTRUMENT_VA(this); } in SBEvent() function in SBEvent
26 SBEvent::SBEvent(uint32_t event_type, const char *cstr, uint32_t cstr_len) in SBEvent() function in SBEvent
33 SBEvent::SBEvent(EventSP &event_sp) in SBEvent() function in SBEvent
38 SBEvent::SBEvent(Event *event_ptr) : m_opaque_ptr(event_ptr) { in SBEvent() function in SBEvent
42 SBEvent::SBEvent(const SBEvent &rhs) in SBEvent() function in SBEvent
47 const SBEvent &SBEvent::operator=(const SBEvent &rhs) { in operator =()
57 SBEvent::~SBEvent() = default;
59 const char *SBEvent::GetDataFlavor() { in GetDataFlavor()
71 uint32_t SBEvent::GetType() const { in GetType()
83 SBBroadcaster SBEvent::GetBroadcaster() const { in GetBroadcaster()
[all …]
H A DSBListener.cpp59 void SBListener::AddEvent(const SBEvent &event) { in AddEvent()
129 bool SBListener::WaitForEvent(uint32_t timeout_secs, SBEvent &event) { in WaitForEvent()
155 SBEvent &event) { in WaitForEventForBroadcaster()
175 uint32_t event_type_mask, SBEvent &event) { in WaitForEventForBroadcasterWithType()
193 bool SBListener::PeekAtNextEvent(SBEvent &event) { in PeekAtNextEvent()
205 SBEvent &event) { in PeekAtNextEventForBroadcaster()
218 SBEvent &event) { in PeekAtNextEventForBroadcasterWithType()
230 bool SBListener::GetNextEvent(SBEvent &event) { in GetNextEvent()
245 SBEvent &event) { in GetNextEventForBroadcaster()
262 SBEvent &event) { in GetNextEventForBroadcasterWithType()
[all …]
H A DSBProcess.cpp305 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState()
311 void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const { in ReportEventState()
317 void SBProcess::ReportEventState(const SBEvent &event, FileSP out) const { in ReportEventState()
333 void SBProcess::AppendEventStateReport(const SBEvent &event, in AppendEventStateReport()
459 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID()
462 SBEvent sb_event; in GetStopEventForStopID()
738 StateType SBProcess::GetStateFromEvent(const SBEvent &event) { in GetStateFromEvent()
746 bool SBProcess::GetRestartedFromEvent(const SBEvent &event) { in GetRestartedFromEvent()
754 size_t SBProcess::GetNumRestartedReasonsFromEvent(const lldb::SBEvent &event) { in GetNumRestartedReasonsFromEvent()
761 SBProcess::GetRestartedReasonAtIndexFromEvent(const lldb::SBEvent &event, in GetRestartedReasonAtIndexFromEvent()
[all …]
H A DSBWatchpoint.cpp262 bool SBWatchpoint::EventIsWatchpointEvent(const lldb::SBEvent &event) { in EventIsWatchpointEvent()
270 SBWatchpoint::GetWatchpointEventTypeFromEvent(const SBEvent &event) { in GetWatchpointEventTypeFromEvent()
279 SBWatchpoint SBWatchpoint::GetWatchpointFromEvent(const lldb::SBEvent &event) { in GetWatchpointFromEvent()
H A DSBBreakpoint.cpp724 bool SBBreakpoint::EventIsBreakpointEvent(const lldb::SBEvent &event) { in EventIsBreakpointEvent()
732 SBBreakpoint::GetBreakpointEventTypeFromEvent(const SBEvent &event) { in GetBreakpointEventTypeFromEvent()
741 SBBreakpoint SBBreakpoint::GetBreakpointFromEvent(const lldb::SBEvent &event) { in GetBreakpointFromEvent()
751 SBBreakpoint::GetBreakpointLocationAtIndexFromEvent(const lldb::SBEvent &event, in GetBreakpointLocationAtIndexFromEvent()
764 SBBreakpoint::GetNumBreakpointLocationsFromEvent(const lldb::SBEvent &event) { in GetNumBreakpointLocationsFromEvent()
H A DSBDebugger.cpp119 const char *SBDebugger::GetProgressFromEvent(const lldb::SBEvent &event, in GetProgressFromEvent()
139 SBDebugger::GetProgressDataFromEvent(const lldb::SBEvent &event) { in GetProgressDataFromEvent()
154 SBDebugger::GetDiagnosticFromEvent(const lldb::SBEvent &event) { in GetDiagnosticFromEvent()
548 SBEvent event(event_sp); in HandleCommand()
567 const SBEvent &event, SBFile out, in HandleProcessEvent()
575 const SBEvent &event, FILE *out, in HandleProcessEvent()
585 const SBEvent &event, FileSP out_sp, in HandleProcessEvent()
H A DSBBroadcaster.cpp60 void SBBroadcaster::BroadcastEvent(const SBEvent &event, bool unique) { in BroadcastEvent()
H A DSBThread.cpp1178 bool SBThread::EventIsThreadEvent(const SBEvent &event) { in EventIsThreadEvent()
1184 SBFrame SBThread::GetStackFrameFromEvent(const SBEvent &event) { in GetStackFrameFromEvent()
1190 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBEvent.h28 class LLDB_API SBEvent {
30 SBEvent();
32 SBEvent(const lldb::SBEvent &rhs);
35 SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len);
37 ~SBEvent();
39 const SBEvent &operator=(const lldb::SBEvent &rhs);
61 static const char *GetCStringFromEvent(const lldb::SBEvent &event);
80 SBEvent(lldb::EventSP &event_sp);
82 SBEvent(lldb_private::Event *event);
H A DSBListener.h28 void AddEvent(const lldb::SBEvent &event);
51 bool WaitForEvent(uint32_t num_seconds, lldb::SBEvent &event);
55 lldb::SBEvent &sb_event);
59 uint32_t event_type_mask, lldb::SBEvent &sb_event);
61 bool PeekAtNextEvent(lldb::SBEvent &sb_event);
64 lldb::SBEvent &sb_event);
69 lldb::SBEvent &sb_event);
71 bool GetNextEvent(lldb::SBEvent &sb_event);
74 lldb::SBEvent &sb_event);
79 lldb::SBEvent &sb_event);
[all …]
H A DSBProcess.h27 class SBEvent; variable
73 void ReportEventState(const lldb::SBEvent &event, FILE *out) const;
76 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
78 void ReportEventState(const lldb::SBEvent &event, FileSP BORROWED) const;
80 void AppendEventStateReport(const lldb::SBEvent &event,
190 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
224 static lldb::StateType GetStateFromEvent(const lldb::SBEvent &event);
226 static bool GetRestartedFromEvent(const lldb::SBEvent &event);
228 static size_t GetNumRestartedReasonsFromEvent(const lldb::SBEvent &event);
231 GetRestartedReasonAtIndexFromEvent(const lldb::SBEvent &event, size_t idx);
[all …]
H A DSBBreakpoint.h135 static bool EventIsBreakpointEvent(const lldb::SBEvent &event);
138 GetBreakpointEventTypeFromEvent(const lldb::SBEvent &event);
140 static lldb::SBBreakpoint GetBreakpointFromEvent(const lldb::SBEvent &event);
143 GetBreakpointLocationAtIndexFromEvent(const lldb::SBEvent &event,
147 GetNumBreakpointLocationsFromEvent(const lldb::SBEvent &event_sp);
H A DSBDebugger.h105 static const char *GetProgressFromEvent(const lldb::SBEvent &event,
110 static const char *GetProgressFromEvent(const lldb::SBEvent &event,
118 GetProgressDataFromEvent(const lldb::SBEvent &event);
122 GetDiagnosticFromEvent(const lldb::SBEvent &event);
300 const lldb::SBEvent &event, FILE *out, FILE *err);
305 const lldb::SBEvent &event, SBFile out, SBFile err);
310 const lldb::SBEvent &event, FileSP BORROWED, FileSP BORROWED);
314 const lldb::SBEvent &event, FileSP out, FileSP err);
H A DSBWatchpoint.h73 static bool EventIsWatchpointEvent(const lldb::SBEvent &event);
76 GetWatchpointEventTypeFromEvent(const lldb::SBEvent &event);
78 static lldb::SBWatchpoint GetWatchpointFromEvent(const lldb::SBEvent &event);
H A DSBBroadcaster.h36 void BroadcastEvent(const lldb::SBEvent &event, bool unique = false);
67 friend class SBEvent; variable
H A DSBThread.h185 static bool EventIsThreadEvent(const SBEvent &event);
187 static SBFrame GetStackFrameFromEvent(const SBEvent &event);
189 static SBThread GetThreadFromEvent(const SBEvent &event);
H A DSBTarget.h63 static bool EventIsTargetEvent(const lldb::SBEvent &event);
65 static lldb::SBTarget GetTargetFromEvent(const lldb::SBEvent &event);
67 static uint32_t GetNumModulesFromEvent(const lldb::SBEvent &event);
70 const lldb::SBEvent &event);
H A DSBStream.h80 friend class SBEvent; variable
H A DSBCommandInterpreter.h48 static bool EventIsCommandInterpreterEvent(const lldb::SBEvent &event);
H A DSBDefines.h70 class LLDB_API SBEvent; variable
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBEventDocstrings.i97 ) lldb::SBEvent;
101 ) lldb::SBEvent::SBEvent;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.cpp60 if (lldb::SBEvent *sb_event = reinterpret_cast<lldb::SBEvent *>( in ExtractValueFromPythonObject()
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-typemaps.swig172 // Typemap for handling SBEvent::SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len)
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig132 return ToSWIGHelper(new lldb::SBEvent(event), SWIGTYPE_p_lldb__SBEvent);
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp104 ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { in GetOpaqueTypeFromSBEvent()

12