| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | allocate13.f90 | 5 type event_type type 18 type(event_type), pointer :: event 32 type(event_type), allocatable :: event 36 type(event_type) :: event 51 type, extends(event_type) :: noktype6 77 type(event_type), allocatable :: event[:] 92 type(event_type), allocatable :: eventsrc[:] 152 type(event_type), allocatable :: event 161 type(event_type), allocatable :: team[:] 166 class(event_type), allocatable :: teamsrc[:]
|
| H A D | resolve87.f90 | 7 type event_type type 26 type(event_type) :: parentField 37 type(event_type) :: childField 41 type(event_type) :: childField 44 type, extends(event_type) :: goodChildType4 55 type(event_type) :: childField 87 type(event_type) :: childField
|
| H A D | event01.f90 | 6 use iso_fortran_env, only : event_type 10 type(event_type) non_coarray 12 type(event_type) concert[*], occurrences(2)[*]
|
| H A D | call04.f90 | 59 use ISO_FORTRAN_ENV, only: event_type 61 type(event_type), intent(out) :: x
|
| H A D | doconcurrent01.f90 | 64 type(event_type) :: x 73 type(event_type) :: x
|
| /llvm-project-15.0.7/lldb/utils/lui/ |
| H A D | sourcewin.py | 222 if event_type == lldb.eBreakpointEventTypeEnabled \ 223 or event_type == lldb.eBreakpointEventTypeAdded \ 225 or event_type == lldb.eBreakpointEventTypeLocationsAdded: 227 elif event_type == lldb.eBreakpointEventTypeRemoved \ 228 or event_type == lldb.eBreakpointEventTypeLocationsRemoved \ 229 or event_type == lldb.eBreakpointEventTypeDisabled: 231 elif event_type == lldb.eBreakpointEventTypeCommandChanged \ 232 or event_type == lldb.eBreakpointEventTypeConditionChanged \ 233 or event_type == lldb.eBreakpointEventTypeIgnoreChanged \ 234 or event_type == lldb.eBreakpointEventTypeThreadChanged \ [all …]
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBBroadcaster.cpp | 48 void SBBroadcaster::BroadcastEventByType(uint32_t event_type, bool unique) { in BroadcastEventByType() argument 49 LLDB_INSTRUMENT_VA(this, event_type, unique); in BroadcastEventByType() 55 m_opaque_ptr->BroadcastEventIfUnique(event_type); in BroadcastEventByType() 57 m_opaque_ptr->BroadcastEvent(event_type); in BroadcastEventByType() 99 bool SBBroadcaster::EventTypeHasListeners(uint32_t event_type) { in EventTypeHasListeners() argument 100 LLDB_INSTRUMENT_VA(this, event_type); in EventTypeHasListeners() 103 return m_opaque_ptr->EventTypeHasListeners(event_type); in EventTypeHasListeners()
|
| H A D | SBEvent.cpp | 27 SBEvent::SBEvent(uint32_t event_type, const char *cstr, uint32_t cstr_len) in SBEvent() argument 28 : m_event_sp(new Event(event_type, new EventDataBytes(cstr, cstr_len))), in SBEvent() 30 LLDB_INSTRUMENT_VA(this, event_type, cstr, cstr_len); in SBEvent() 75 uint32_t event_type = 0; in GetType() local 77 event_type = lldb_event->GetType(); in GetType() 80 return event_type; in GetType()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | Broadcaster.h | 270 void BroadcastEvent(uint32_t event_type, in BroadcastEvent() argument 272 m_broadcaster_sp->BroadcastEvent(event_type, event_data_sp); in BroadcastEvent() 275 void BroadcastEvent(uint32_t event_type, EventData *event_data = nullptr) { 276 m_broadcaster_sp->BroadcastEvent(event_type, event_data); 279 void BroadcastEventIfUnique(uint32_t event_type, 281 m_broadcaster_sp->BroadcastEventIfUnique(event_type, event_data); 345 bool EventTypeHasListeners(uint32_t event_type) { in EventTypeHasListeners() argument 346 return m_broadcaster_sp->EventTypeHasListeners(event_type); in EventTypeHasListeners() 437 void BroadcastEvent(uint32_t event_type, 440 void BroadcastEventIfUnique(uint32_t event_type, [all …]
|
| H A D | Event.h | 188 Event(Broadcaster *broadcaster, uint32_t event_type, 191 Event(Broadcaster *broadcaster, uint32_t event_type, 194 Event(uint32_t event_type, EventData *data = nullptr); 196 Event(uint32_t event_type, const lldb::EventDataSP &event_data_sp);
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | Broadcaster.cpp | 155 if (pair.second & event_type) in EventTypeHasListeners() 198 const uint32_t event_type = event_sp->GetType(); in PrivateBroadcastEvent() local 207 if ((event_type & m_hijacking_masks.back()) == 0) in PrivateBroadcastEvent() 228 &m_broadcaster, event_type)) in PrivateBroadcastEvent() 233 if (!(pair.second & event_type)) in PrivateBroadcastEvent() 236 &m_broadcaster, event_type)) in PrivateBroadcastEvent() 246 auto event_sp = std::make_shared<Event>(event_type, event_data); in BroadcastEvent() 251 uint32_t event_type, const lldb::EventDataSP &event_data_sp) { in BroadcastEvent() argument 252 auto event_sp = std::make_shared<Event>(event_type, event_data_sp); in BroadcastEvent() 257 uint32_t event_type, EventData *event_data) { in BroadcastEventIfUnique() argument [all …]
|
| H A D | Event.cpp | 30 Event::Event(Broadcaster *broadcaster, uint32_t event_type, EventData *data) in Event() argument 31 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 34 Event::Event(Broadcaster *broadcaster, uint32_t event_type, in Event() argument 36 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 39 Event::Event(uint32_t event_type, EventData *data) in Event() argument 40 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {} in Event() 42 Event::Event(uint32_t event_type, const EventDataSP &event_data_sp) in Event() argument 43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {} in Event()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | jitprofiling.c | 112 iJIT_NotifyEvent(iJIT_JVM_EVENT event_type, void *EventSpecificData) in iJIT_NotifyEvent() argument 152 if ((event_type == iJVM_EVENT_TYPE_ENTER_NIDS || in iJIT_NotifyEvent() 153 event_type == iJVM_EVENT_TYPE_LEAVE_NIDS) && in iJIT_NotifyEvent() 162 if (event_type == iJVM_EVENT_TYPE_ENTER_NIDS) in iJIT_NotifyEvent() 200 if (event_type == iJVM_EVENT_TYPE_LEAVE_NIDS) in iJIT_NotifyEvent() 229 if (event_type == iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED) in iJIT_NotifyEvent() 236 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData); in iJIT_NotifyEvent()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Debugger.cpp | 1340 uint32_t event_type = 0; in PrivateReportDiagnostic() local 1343 event_type = Debugger::eBroadcastBitWarning; in PrivateReportDiagnostic() 1346 event_type = Debugger::eBroadcastBitError; in PrivateReportDiagnostic() 1351 if (!broadcaster.EventTypeHasListeners(event_type)) { in PrivateReportDiagnostic() 1360 event_type, in PrivateReportDiagnostic() 1501 const uint32_t event_type = in HandleBreakpointEvent() local 1568 const uint32_t event_type = event_sp->GetType(); in HandleProcessEvent() local 1653 const uint32_t event_type = event_sp->GetType(); in HandleThreadEvent() local 1719 uint32_t event_type = event_sp->GetType(); in DefaultEventHandler() local 1731 if (event_type & in DefaultEventHandler() [all …]
|
| H A D | Communication.cpp | 152 const uint32_t event_type = event_sp->GetType(); in Read() local 153 if (event_type & eBroadcastBitReadThreadGotBytes) { in Read() 157 if (event_type & eBroadcastBitReadThreadDidExit) { in Read()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_events/ |
| H A D | TestWatchpointEvents.py | 84 def GetWatchpointEvent(self, event_type): argument 94 found_type, event_type, 96 (event_type,
|
| /llvm-project-15.0.7/flang/test/Lower/ |
| H A D | pre-fir-tree04.f90 | 7 use iso_fortran_env, only: team_type, event_type, lock_type 9 type(event_type) :: done
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBBroadcaster.i | 44 BroadcastEventByType (uint32_t event_type, bool unique = false); 59 EventTypeHasListeners (uint32_t event_type);
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBBroadcaster.h | 34 void BroadcastEventByType(uint32_t event_type, bool unique = false); 45 bool EventTypeHasListeners(uint32_t event_type);
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectQuit.cpp | 102 const uint32_t event_type = in DoExecute() local 104 m_interpreter.BroadcastEvent(event_type); in DoExecute()
|
| /llvm-project-15.0.7/flang/test/Driver/ |
| H A D | intrinsic-module-path.f90 | 21 use iso_fortran_env, only: team_type, event_type, lock_type
|
| /llvm-project-15.0.7/flang/test/Driver/Inputs/ |
| H A D | iso_fortran_env.mod | 4 use __fortran_builtins,only:event_type=>__builtin_event_type
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.cpp | 774 uint32_t event_type = event_sp->GetType(); in AsyncThread() local 778 pid, event_type); in AsyncThread() 786 switch (event_type) { in AsyncThread() 811 event_type = event_sp->GetType(); in AsyncThread() 829 pid, event_type); in AsyncThread()
|
| /llvm-project-15.0.7/compiler-rt/include/xray/ |
| H A D | xray_interface.h | 86 extern uint16_t __xray_register_event_type(const char *event_type);
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/ |
| H A D | xray_interface.cpp | 454 const char *const event_type) XRAY_NEVER_INSTRUMENT { in __xray_register_event_type() argument 455 TypeDescriptorMapType::Handle h(&TypeDescriptorAddressMap, (uptr)event_type); in __xray_register_event_type() 459 h->description_string_length = strnlen(event_type, 1024); in __xray_register_event_type()
|