| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | Listener.h | 41 typedef bool (*HandleBroadcastCallback)(lldb::EventSP &event_sp, void *baton); 60 void AddEvent(lldb::EventSP &event); 90 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout); 92 bool GetEventForBroadcaster(Broadcaster *broadcaster, lldb::EventSP &event_sp, 97 lldb::EventSP &event_sp, 100 size_t HandleBroadcastEvent(lldb::EventSP &event_sp); 119 typedef std::list<lldb::EventSP> event_collection; 128 lldb::EventSP &event_sp, bool remove); 134 lldb::EventSP &event_sp);
|
| H A D | Broadcaster.h | 296 void BroadcastEvent(lldb::EventSP &event_sp) { in BroadcastEvent() 300 void BroadcastEventIfUnique(lldb::EventSP &event_sp) { in BroadcastEventIfUnique() 484 void BroadcastEvent(lldb::EventSP &event_sp); 486 void BroadcastEventIfUnique(lldb::EventSP &event_sp); 537 void PrivateBroadcastEvent(lldb::EventSP &event_sp, bool unique);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Listener.cpp | 203 void Listener::AddEvent(EventSP &event_sp) { in AddEvent() 220 bool operator()(const EventSP &event_sp) const { in operator ()() 236 bool operator()(const EventSP &event_sp) const { in operator ()() 268 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() 388 Broadcaster *broadcaster, uint32_t event_type_mask, EventSP &event_sp, in GetEventForBroadcasterWithType() 395 EventSP &event_sp, in GetEventForBroadcaster() [all …]
|
| H A D | Broadcaster.cpp | 186 void Broadcaster::BroadcasterImpl::BroadcastEvent(EventSP &event_sp) { in BroadcastEvent() 190 void Broadcaster::BroadcasterImpl::BroadcastEventIfUnique(EventSP &event_sp) { in BroadcastEventIfUnique() 194 void Broadcaster::BroadcasterImpl::PrivateBroadcastEvent(EventSP &event_sp, in PrivateBroadcastEvent()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBEvent.h | 31 SBEvent(lldb::EventSP &event_sp); 71 lldb::EventSP &GetSP() const; 73 void reset(lldb::EventSP &event_sp); 80 mutable lldb::EventSP m_event_sp;
|
| H A D | SBStructuredData.h | 24 SBStructuredData(const lldb::EventSP &event_sp);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBListener.cpp | 54 EventSP &event_sp = event.GetSP(); in AddEvent() 165 EventSP event_sp; in WaitForEvent() 197 EventSP event_sp; in WaitForEventForBroadcaster() 215 EventSP event_sp; in WaitForEventForBroadcasterWithType() 259 EventSP event_sp; in GetNextEvent() 272 EventSP event_sp; in GetNextEventForBroadcaster() 287 EventSP event_sp; in GetNextEventForBroadcasterWithType()
|
| H A D | SBEvent.cpp | 31 SBEvent::SBEvent(EventSP &event_sp) in SBEvent() 125 EventSP &SBEvent::GetSP() const { return m_event_sp; } in GetSP() 138 void SBEvent::reset(EventSP &event_sp) { in reset()
|
| H A D | SBBroadcaster.cpp | 78 EventSP event_sp = event.GetSP(); in BroadcastEvent()
|
| H A D | SBStructuredData.cpp | 32 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData()
|
| H A D | SBProcess.cpp | 537 EventSP event_sp; in GetStopEventForStopID() 918 EventSP event_sp = event.GetSP(); in EventIsStructuredDataEvent()
|
| H A D | SBDebugger.cpp | 378 EventSP event_sp; in HandleCommand()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Process.h | 482 void SetStopEventForLastNaturalStopID(lldb::EventSP event_sp) { in SetStopEventForLastNaturalStopID() 486 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() 489 return lldb::EventSP(); in GetStopEventForStopID() 500 lldb::EventSP m_last_natural_stop_event; 2425 lldb::StateType GetNextEvent(lldb::EventSP &event_sp); 2435 lldb::EventSP *event_sp_ptr = nullptr, 2840 void SetState(lldb::EventSP &event_sp); 3172 void HandlePrivateEvent(lldb::EventSP &event_sp); 3182 bool GetEventsPrivate(lldb::EventSP &event_sp, 3186 GetStateChangedEventsPrivate(lldb::EventSP &event_sp, [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | Breakpoint.h | 127 GetBreakpointEventTypeFromEvent(const lldb::EventSP &event_sp); 130 GetBreakpointFromEvent(const lldb::EventSP &event_sp); 133 GetBreakpointLocationAtIndexFromEvent(const lldb::EventSP &event_sp, 137 GetNumBreakpointLocationsFromEvent(const lldb::EventSP &event_sp);
|
| H A D | Watchpoint.h | 46 GetWatchpointEventTypeFromEvent(const lldb::EventSP &event_sp); 49 GetWatchpointFromEvent(const lldb::EventSP &event_sp);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Debugger.h | 354 void HandleBreakpointEvent(const lldb::EventSP &event_sp); 356 void HandleProcessEvent(const lldb::EventSP &event_sp); 358 void HandleThreadEvent(const lldb::EventSP &event_sp);
|
| H A D | StructuredDataImpl.h | 33 StructuredDataImpl(const lldb::EventSP &event_sp) in StructuredDataImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | Process.cpp | 998 EventSP event_sp; in WaitForProcessToStop() 1685 EventSP event_sp( in SetPrivateState() 2767 EventSP event_sp; in Launch() 2861 lldb::EventSP event_sp; in LoadCore() 3236 EventSP event_sp; in ConnectRemote() 3331 EventSP event_sp; in Halt() 3416 EventSP exit_event_sp; in Detach() 3488 EventSP exit_event_sp; in Destroy() 3958 EventSP event_sp; in HaltPrivate() 3990 EventSP event_sp; in RunPrivateStateThread() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | Watchpoint.cpp | 361 const EventSP &event_sp) { in GetWatchpointEventTypeFromEvent() 371 const EventSP &event_sp) { in GetWatchpointFromEvent()
|
| H A D | Breakpoint.cpp | 1083 const EventSP &event_sp) { in GetBreakpointEventTypeFromEvent() 1093 const EventSP &event_sp) { in GetBreakpointFromEvent() 1104 const EventSP &event_sp) { in GetNumBreakpointLocationsFromEvent() 1114 const lldb::EventSP &event_sp, uint32_t bp_loc_idx) { in GetBreakpointLocationAtIndexFromEvent()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Communication.cpp | 151 EventSP event_sp; in Read() 389 EventSP event_sp; in SynchronizeWithReadThread()
|
| H A D | Debugger.cpp | 1296 void Debugger::HandleBreakpointEvent(const EventSP &event_sp) { in HandleBreakpointEvent() 1400 void Debugger::HandleProcessEvent(const EventSP &event_sp) { in HandleProcessEvent() 1490 void Debugger::HandleThreadEvent(const EventSP &event_sp) { in HandleThreadEvent() 1551 EventSP event_sp; in DefaultEventHandler() 1633 lldb::EventSP event_sp; in StartEventHandlerThread()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationReplayServer.cpp | 182 EventSP event_sp; in AsyncThread()
|
| H A D | ProcessGDBRemote.cpp | 1519 EventSP event_sp; in DoResume() 3753 EventSP event_sp; in AsyncThread()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-forward.h | 346 typedef std::shared_ptr<lldb_private::Event> EventSP; typedef
|