Home
last modified time | relevance | path

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

12

/freebsd-14.2/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
32 SBEvent::SBEvent(EventSP &event_sp) in SBEvent() function in SBEvent
37 SBEvent::SBEvent(Event *event_ptr) : m_opaque_ptr(event_ptr) { in SBEvent() function in SBEvent
41 SBEvent::SBEvent(const SBEvent &rhs) in SBEvent() function in SBEvent
46 const SBEvent &SBEvent::operator=(const SBEvent &rhs) { in operator =()
56 SBEvent::~SBEvent() = default;
122 void SBEvent::Clear() { in Clear()
132 Event *SBEvent::get() const { in get()
153 bool SBEvent::IsValid() const { in IsValid()
[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.cpp306 void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const { in ReportEventState()
328 void SBProcess::AppendEventStateReport(const SBEvent &event, in AppendEventStateReport()
454 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID()
457 SBEvent sb_event; in GetStopEventForStopID()
723 StateType SBProcess::GetStateFromEvent(const SBEvent &event) { in GetStateFromEvent()
731 bool SBProcess::GetRestartedFromEvent(const SBEvent &event) { in GetRestartedFromEvent()
755 SBProcess SBProcess::GetProcessFromEvent(const SBEvent &event) { in GetProcessFromEvent()
768 bool SBProcess::GetInterruptedFromEvent(const SBEvent &event) { in GetInterruptedFromEvent()
775 SBProcess::GetStructuredDataFromEvent(const lldb::SBEvent &event) { in GetStructuredDataFromEvent()
781 bool SBProcess::EventIsProcessEvent(const SBEvent &event) { in EventIsProcessEvent()
[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.cpp723 bool SBBreakpoint::EventIsBreakpointEvent(const lldb::SBEvent &event) { in EventIsBreakpointEvent()
731 SBBreakpoint::GetBreakpointEventTypeFromEvent(const SBEvent &event) { in GetBreakpointEventTypeFromEvent()
740 SBBreakpoint SBBreakpoint::GetBreakpointFromEvent(const lldb::SBEvent &event) { in GetBreakpointFromEvent()
750 SBBreakpoint::GetBreakpointLocationAtIndexFromEvent(const lldb::SBEvent &event, in GetBreakpointLocationAtIndexFromEvent()
763 SBBreakpoint::GetNumBreakpointLocationsFromEvent(const lldb::SBEvent &event) { in GetNumBreakpointLocationsFromEvent()
H A DSBDebugger.cpp118 const char *SBDebugger::GetProgressFromEvent(const lldb::SBEvent &event, in GetProgressFromEvent()
138 SBDebugger::GetProgressDataFromEvent(const lldb::SBEvent &event) { in GetProgressDataFromEvent()
153 SBDebugger::GetDiagnosticFromEvent(const lldb::SBEvent &event) { in GetDiagnosticFromEvent()
591 SBEvent event(event_sp); in HandleCommand()
610 const SBEvent &event, SBFile out, in HandleProcessEvent()
618 const SBEvent &event, FILE *out, in HandleProcessEvent()
628 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.cpp1164 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()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBEvent.h27 class LLDB_API SBEvent {
29 SBEvent();
31 SBEvent(const lldb::SBEvent &rhs);
34 SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len);
36 ~SBEvent();
38 const SBEvent &operator=(const lldb::SBEvent &rhs);
60 static const char *GetCStringFromEvent(const lldb::SBEvent &event);
78 SBEvent(lldb::EventSP &event_sp);
80 SBEvent(lldb_private::Event *event_sp);
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;
80 void AppendEventStateReport(const lldb::SBEvent &event,
189 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
213 static lldb::StateType GetStateFromEvent(const lldb::SBEvent &event);
215 static bool GetRestartedFromEvent(const lldb::SBEvent &event);
224 static bool GetInterruptedFromEvent(const lldb::SBEvent &event);
227 GetStructuredDataFromEvent(const lldb::SBEvent &event);
229 static bool EventIsProcessEvent(const lldb::SBEvent &event);
[all …]
H A DSBDebugger.h89 static const char *GetProgressFromEvent(const lldb::SBEvent &event,
94 static const char *GetProgressFromEvent(const lldb::SBEvent &event,
101 GetProgressDataFromEvent(const lldb::SBEvent &event);
104 GetDiagnosticFromEvent(const lldb::SBEvent &event);
217 const lldb::SBEvent &event, FILE *out, FILE *err);
221 const lldb::SBEvent &event, SBFile out, SBFile err);
225 const lldb::SBEvent &event, FileSP BORROWED, FileSP BORROWED);
228 const lldb::SBEvent &event, FileSP out, FileSP err);
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 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.h61 static bool EventIsTargetEvent(const lldb::SBEvent &event);
63 static lldb::SBTarget GetTargetFromEvent(const lldb::SBEvent &event);
65 static uint32_t GetNumModulesFromEvent(const lldb::SBEvent &event);
68 const lldb::SBEvent &event);
H A DSBStream.h74 friend class SBEvent; variable
H A DSBCommandInterpreter.h47 static bool EventIsCommandInterpreterEvent(const lldb::SBEvent &event);
H A DSBDefines.h67 class LLDB_API SBEvent; variable
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBEventDocstrings.i97 ) lldb::SBEvent;
101 ) lldb::SBEvent::SBEvent;
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig118 ScopedPythonObject<lldb::SBEvent> SWIGBridge::ToSWIGWrapper(Event *event) {
119 return ScopedPythonObject<lldb::SBEvent>(new lldb::SBEvent(event),
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h28 class SBEvent; variable
114 static python::ScopedPythonObject<lldb::SBEvent> ToSWIGWrapper(Event *event);
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/bindings/
H A Dheaders.swig27 #include "lldb/API/SBEvent.h"

12