| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Listener.h | 37 typedef bool (*HandleBroadcastCallback)(lldb::EventSP &event_sp, void *baton); 54 void AddEvent(lldb::EventSP &event); 85 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout); 87 bool GetEventForBroadcaster(Broadcaster *broadcaster, lldb::EventSP &event_sp, 92 lldb::EventSP &event_sp, 95 size_t HandleBroadcastEvent(lldb::EventSP &event_sp); 114 typedef std::list<lldb::EventSP> event_collection; 121 uint32_t event_type_mask, lldb::EventSP &event_sp, 126 uint32_t event_type_mask, lldb::EventSP &event_sp);
|
| H A D | Broadcaster.h | 167 void BroadcastEvent(lldb::EventSP &event_sp) { in BroadcastEvent() 171 void BroadcastEventIfUnique(lldb::EventSP &event_sp) { in BroadcastEventIfUnique() 345 void BroadcastEvent(lldb::EventSP &event_sp); 347 void BroadcastEventIfUnique(lldb::EventSP &event_sp); 400 void PrivateBroadcastEvent(lldb::EventSP &event_sp, bool unique);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Listener.cpp | 178 void Listener::AddEvent(EventSP &event_sp) { in AddEvent() 193 uint32_t event_type_mask, EventSP &event_sp, bool remove) { in FindNextEventInternal() 204 [broadcaster, event_type_mask](const EventSP &event_sp) -> bool { in FindNextEventInternal() 245 EventSP event_sp; in PeekAtNextEvent() 253 EventSP event_sp; in PeekAtNextEventForBroadcaster() 263 EventSP event_sp; in PeekAtNextEventForBroadcasterWithType() 273 uint32_t event_type_mask, EventSP &event_sp) { in GetEventInternal() 308 Broadcaster *broadcaster, uint32_t event_type_mask, EventSP &event_sp, in GetEventForBroadcasterWithType() 314 EventSP &event_sp, in GetEventForBroadcaster() 319 bool Listener::GetEvent(EventSP &event_sp, const Timeout<std::micro> &timeout) { in GetEvent() [all …]
|
| H A D | Broadcaster.cpp | 227 void Broadcaster::BroadcasterImpl::BroadcastEvent(EventSP &event_sp) { in BroadcastEvent() 231 void Broadcaster::BroadcasterImpl::BroadcastEventIfUnique(EventSP &event_sp) { in BroadcastEventIfUnique() 235 void Broadcaster::BroadcasterImpl::PrivateBroadcastEvent(EventSP &event_sp, in PrivateBroadcastEvent()
|
| H A D | Event.cpp | 90 EventSP me_sp = shared_from_this(); in DoOnRemoval()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBEvent.h | 78 SBEvent(lldb::EventSP &event_sp); 82 lldb::EventSP &GetSP() const; 84 void reset(lldb::EventSP &event_sp); 91 mutable lldb::EventSP m_event_sp;
|
| H A D | SBStructuredData.h | 128 SBStructuredData(const lldb::EventSP &event_sp);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBListener.cpp | 62 EventSP &event_sp = event.GetSP(); in AddEvent() 141 EventSP event_sp; in WaitForEvent() 162 EventSP event_sp; in WaitForEventForBroadcaster() 182 EventSP event_sp; in WaitForEventForBroadcasterWithType() 234 EventSP event_sp; in GetNextEvent() 249 EventSP event_sp; in GetNextEventForBroadcaster() 266 EventSP event_sp; in GetNextEventForBroadcasterWithType()
|
| H A D | SBEvent.cpp | 32 SBEvent::SBEvent(EventSP &event_sp) in SBEvent() 130 EventSP &SBEvent::GetSP() const { return m_event_sp; } in GetSP() 143 void SBEvent::reset(EventSP &event_sp) { in reset()
|
| H A D | SBBroadcaster.cpp | 66 EventSP event_sp = event.GetSP(); in BroadcastEvent()
|
| H A D | SBStructuredData.cpp | 60 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData()
|
| H A D | SBProcess.cpp | 458 EventSP event_sp; in GetStopEventForStopID() 791 EventSP event_sp = event.GetSP(); in EventIsStructuredDataEvent()
|
| H A D | SBDebugger.cpp | 587 EventSP event_sp; in HandleCommand()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Process.h | 301 void SetStopEventForLastNaturalStopID(lldb::EventSP event_sp) { in SetStopEventForLastNaturalStopID() 305 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() 308 return lldb::EventSP(); in GetStopEventForStopID() 319 lldb::EventSP m_last_natural_stop_event; 1472 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() 2232 lldb::StateType GetNextEvent(lldb::EventSP &event_sp); 2245 lldb::EventSP *event_sp_ptr = nullptr, 3150 void HandlePrivateEvent(lldb::EventSP &event_sp); 3160 bool GetEventsPrivate(lldb::EventSP &event_sp, 3164 GetStateChangedEventsPrivate(lldb::EventSP &event_sp, [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | Breakpoint.h | 125 GetBreakpointEventTypeFromEvent(const lldb::EventSP &event_sp); 128 GetBreakpointFromEvent(const lldb::EventSP &event_sp); 131 GetBreakpointLocationAtIndexFromEvent(const lldb::EventSP &event_sp, 135 GetNumBreakpointLocationsFromEvent(const lldb::EventSP &event_sp);
|
| H A D | Watchpoint.h | 45 GetWatchpointEventTypeFromEvent(const lldb::EventSP &event_sp); 48 GetWatchpointFromEvent(const lldb::EventSP &event_sp);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Debugger.h | 662 void HandleBreakpointEvent(const lldb::EventSP &event_sp); 664 void HandleProcessEvent(const lldb::EventSP &event_sp); 666 void HandleThreadEvent(const lldb::EventSP &event_sp); 668 void HandleProgressEvent(const lldb::EventSP &event_sp); 670 void HandleDiagnosticEvent(const lldb::EventSP &event_sp);
|
| H A D | StructuredDataImpl.h | 35 StructuredDataImpl(const lldb::EventSP &event_sp) in StructuredDataImpl()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | Process.cpp | 682 EventSP event_sp; in WaitForProcessToStop() 1452 EventSP event_sp( in SetPrivateState() 2468 EventSP first_stop_event_sp; in Launch() 2663 lldb::EventSP event_sp; in LoadCore() 3073 EventSP event_sp; in ConnectRemote() 3163 EventSP event_sp; in Halt() 3250 EventSP exit_event_sp; in Detach() 3329 EventSP exit_event_sp; in DestroyImpl() 3804 EventSP event_sp; in HaltPrivate() 3827 EventSP event_sp; in RunPrivateStateThread() [all …]
|
| H A D | ProcessTrace.cpp | 67 EventSP event_sp; in DidAttach()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | ThreadedCommunication.cpp | 121 EventSP event_sp; in Read() 368 EventSP event_sp; in SynchronizeWithReadThread()
|
| H A D | Debugger.cpp | 1441 EventSP event_sp(new Event( in PrivateReportProgress() 1500 EventSP event_sp = std::make_shared<Event>( in PrivateReportDiagnostic() 1569 EventSP event_sp = std::make_shared<Event>( in ReportSymbolChange() 1667 void Debugger::HandleBreakpointEvent(const EventSP &event_sp) { in HandleBreakpointEvent() 1734 void Debugger::HandleProcessEvent(const EventSP &event_sp) { in HandleProcessEvent() 1821 void Debugger::HandleThreadEvent(const EventSP &event_sp) { in HandleThreadEvent() 1886 EventSP event_sp; in DefaultEventHandler() 1981 lldb::EventSP event_sp; in StartEventHandlerThread() 2001 void Debugger::HandleProgressEvent(const lldb::EventSP &event_sp) { in HandleProgressEvent() 2086 void Debugger::HandleDiagnosticEvent(const lldb::EventSP &event_sp) { in HandleDiagnosticEvent()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | Breakpoint.cpp | 1071 const EventSP &event_sp) { in GetBreakpointEventTypeFromEvent() 1081 const EventSP &event_sp) { in GetBreakpointFromEvent() 1092 const EventSP &event_sp) { in GetNumBreakpointLocationsFromEvent() 1102 const lldb::EventSP &event_sp, uint32_t bp_loc_idx) { in GetBreakpointLocationAtIndexFromEvent()
|
| H A D | Watchpoint.cpp | 511 const EventSP &event_sp) { in GetWatchpointEventTypeFromEvent() 521 const EventSP &event_sp) { in GetWatchpointFromEvent()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 336 typedef std::shared_ptr<lldb_private::Event> EventSP; typedef
|