| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| D | Listener.h | 38 typedef bool (*HandleBroadcastCallback)(lldb::EventSP &event_sp, void *baton); 55 void AddEvent(lldb::EventSP &event); 86 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout); 88 bool GetEventForBroadcaster(Broadcaster *broadcaster, lldb::EventSP &event_sp, 93 lldb::EventSP &event_sp, 96 size_t HandleBroadcastEvent(lldb::EventSP &event_sp); 113 typedef std::list<lldb::EventSP> event_collection; 122 lldb::EventSP &event_sp, bool remove); 128 lldb::EventSP &event_sp);
|
| D | Broadcaster.h | 262 void BroadcastEvent(lldb::EventSP &event_sp) { in BroadcastEvent() 266 void BroadcastEventIfUnique(lldb::EventSP &event_sp) { in BroadcastEventIfUnique() 431 void BroadcastEvent(lldb::EventSP &event_sp); 433 void BroadcastEventIfUnique(lldb::EventSP &event_sp); 484 void PrivateBroadcastEvent(lldb::EventSP &event_sp, bool unique);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/ |
| D | Listener.cpp | 202 void Listener::AddEvent(EventSP &event_sp) { in AddEvent() 219 bool operator()(const EventSP &event_sp) const { in operator ()() 235 bool operator()(const EventSP &event_sp) const { in operator ()() 267 uint32_t num_broadcaster_names, uint32_t event_type_mask, EventSP &event_sp, in FindNextEventInternal() 320 EventSP event_sp; in PeekAtNextEvent() 328 EventSP event_sp; in PeekAtNextEventForBroadcaster() 338 EventSP event_sp; in PeekAtNextEventForBroadcasterWithType() 350 EventSP &event_sp) { in GetEventInternal() 386 Broadcaster *broadcaster, uint32_t event_type_mask, EventSP &event_sp, in GetEventForBroadcasterWithType() 393 EventSP &event_sp, in GetEventForBroadcaster() [all …]
|
| D | Broadcaster.cpp | 183 void Broadcaster::BroadcasterImpl::BroadcastEvent(EventSP &event_sp) { in BroadcastEvent() 187 void Broadcaster::BroadcasterImpl::BroadcastEventIfUnique(EventSP &event_sp) { in BroadcastEventIfUnique() 191 void Broadcaster::BroadcasterImpl::PrivateBroadcastEvent(EventSP &event_sp, in PrivateBroadcastEvent()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBEvent.h | 30 SBEvent(lldb::EventSP &event_sp); 72 lldb::EventSP &GetSP() const; 74 void reset(lldb::EventSP &event_sp); 81 mutable lldb::EventSP m_event_sp;
|
| D | SBStructuredData.h | 23 SBStructuredData(const lldb::EventSP &event_sp);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBEvent.cpp | 34 SBEvent::SBEvent(EventSP &event_sp) in SBEvent() 36 LLDB_RECORD_CONSTRUCTOR(SBEvent, (lldb::EventSP &), event_sp); in SBEvent() 137 EventSP &SBEvent::GetSP() const { return m_event_sp; } in GetSP() 150 void SBEvent::reset(EventSP &event_sp) { in reset() 215 LLDB_REGISTER_CONSTRUCTOR(SBEvent, (lldb::EventSP &)); in RegisterMethods()
|
| D | SBListener.cpp | 67 EventSP &event_sp = event.GetSP(); in AddEvent() 155 EventSP event_sp; in WaitForEvent() 178 EventSP event_sp; in WaitForEventForBroadcaster() 201 EventSP event_sp; in WaitForEventForBroadcasterWithType() 258 EventSP event_sp; in GetNextEvent() 275 EventSP event_sp; in GetNextEventForBroadcaster() 294 EventSP event_sp; in GetNextEventForBroadcasterWithType()
|
| D | SBStructuredData.cpp | 37 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() 39 LLDB_RECORD_CONSTRUCTOR(SBStructuredData, (const lldb::EventSP &), event_sp); in SBStructuredData() 211 LLDB_REGISTER_CONSTRUCTOR(SBStructuredData, (const lldb::EventSP &)); in RegisterMethods()
|
| D | SBBroadcaster.cpp | 72 EventSP event_sp = event.GetSP(); in BroadcastEvent()
|
| D | SBProcess.cpp | 485 EventSP event_sp; in GetStopEventForStopID() 820 EventSP event_sp = event.GetSP(); in EventIsStructuredDataEvent()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/ |
| D | Process.h | 307 void SetStopEventForLastNaturalStopID(lldb::EventSP event_sp) { in SetStopEventForLastNaturalStopID() 311 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() 314 return lldb::EventSP(); in GetStopEventForStopID() 325 lldb::EventSP m_last_natural_stop_event; 1365 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() 2133 lldb::StateType GetNextEvent(lldb::EventSP &event_sp); 2143 lldb::EventSP *event_sp_ptr = nullptr, 2161 lldb::EventSP &event_sp, const Timeout<std::micro> &timeout, 2184 static bool HandleProcessStateChangedEvent(const lldb::EventSP &event_sp, 2689 virtual EventActionResult PerformAction(lldb::EventSP &event_sp) = 0; [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| D | Breakpoint.h | 121 GetBreakpointEventTypeFromEvent(const lldb::EventSP &event_sp); 124 GetBreakpointFromEvent(const lldb::EventSP &event_sp); 127 GetBreakpointLocationAtIndexFromEvent(const lldb::EventSP &event_sp, 131 GetNumBreakpointLocationsFromEvent(const lldb::EventSP &event_sp);
|
| D | Watchpoint.h | 45 GetWatchpointEventTypeFromEvent(const lldb::EventSP &event_sp); 48 GetWatchpointFromEvent(const lldb::EventSP &event_sp);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/ |
| D | Debugger.h | 451 void HandleBreakpointEvent(const lldb::EventSP &event_sp); 453 void HandleProcessEvent(const lldb::EventSP &event_sp); 455 void HandleThreadEvent(const lldb::EventSP &event_sp);
|
| D | StructuredDataImpl.h | 32 StructuredDataImpl(const lldb::EventSP &event_sp) in StructuredDataImpl()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | Process.cpp | 534 m_mod_id.SetStopEventForLastNaturalStopID(EventSP()); in Finalize() 595 StateType Process::GetNextEvent(EventSP &event_sp) { in GetNextEvent() 628 EventSP *event_sp_ptr, bool wait_always, in WaitForProcessToStop() 659 EventSP event_sp; in WaitForProcessToStop() 695 bool Process::HandleProcessStateChangedEvent(const EventSP &event_sp, in HandleProcessStateChangedEvent() 936 StateType Process::GetStateChangedEvents(EventSP &event_sp, in GetStateChangedEvents() 980 Process::GetStateChangedEventsPrivate(EventSP &event_sp, in GetStateChangedEventsPrivate() 998 bool Process::GetEventsPrivate(EventSP &event_sp, in GetEventsPrivate() 1056 m_mod_id.SetStopEventForLastNaturalStopID(EventSP()); in SetExitStatus() 1414 EventSP event_sp( in SetPrivateState() [all …]
|
| D | ProcessTrace.cpp | 73 EventSP event_sp; in DidAttach()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBStructuredData.i | 23 SBStructuredData(const lldb::EventSP &event_sp);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| D | Watchpoint.cpp | 371 const EventSP &event_sp) { in GetWatchpointEventTypeFromEvent() 381 const EventSP &event_sp) { in GetWatchpointFromEvent()
|
| D | Breakpoint.cpp | 1050 const EventSP &event_sp) { in GetBreakpointEventTypeFromEvent() 1060 const EventSP &event_sp) { in GetBreakpointFromEvent() 1071 const EventSP &event_sp) { in GetNumBreakpointLocationsFromEvent() 1081 const lldb::EventSP &event_sp, uint32_t bp_loc_idx) { in GetBreakpointLocationAtIndexFromEvent()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Core/ |
| D | Communication.cpp | 152 EventSP event_sp; in Read() 409 EventSP event_sp; in SynchronizeWithReadThread()
|
| D | Debugger.cpp | 1194 EventSP event_sp(new Event(event_type, new Debugger::ProgressEventData( in PrivateReportProgress() 1298 void Debugger::HandleBreakpointEvent(const EventSP &event_sp) { in HandleBreakpointEvent() 1365 void Debugger::HandleProcessEvent(const EventSP &event_sp) { in HandleProcessEvent() 1449 void Debugger::HandleThreadEvent(const EventSP &event_sp) { in HandleThreadEvent() 1510 EventSP event_sp; in DefaultEventHandler() 1602 lldb::EventSP event_sp; in StartEventHandlerThread()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationReplayServer.cpp | 268 EventSP event_sp; in AsyncThread()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/ |
| D | lldb-forward.h | 316 typedef std::shared_ptr<lldb_private::Event> EventSP; typedef
|