Searched refs:event_type (Results 1 - 25 of 84) sorted by relevance

1234

/freebsd-11-stable/contrib/gdb/gdb/
H A Dinf-loop.h25 extern void inferior_event_handler (enum inferior_event_type event_type,
H A Dinf-loop.c44 inferior_event_handler (enum inferior_event_type event_type, argument
47 switch (event_type)
/freebsd-11-stable/sys/dev/nxge/include/
H A Dxge-queue.h69 * @event_type: Event type. Includes (but is not restricted to)
82 xge_hal_event_e event_type; member in struct:xge_queue_item_t
91 * @event_type: HAL or ULD-defined event type. Note that HAL own
97 typedef void (*xge_queued_f) (void *data, int event_type);
156 xge_queue_produce(xge_queue_h queueh, int event_type, void *context,
160 xge_queue_produce_context(xge_queue_h queueh, int event_type, void *context) { argument
161 return xge_queue_produce(queueh, event_type, context, 0, 0, 0);
H A Dxgehal-driver.h113 * @event_type: HAL- or ULD-defined event type. Note that HAL
124 typedef void (*xge_uld_event_queued_f) (xge_hal_device_h devh, int event_type);
/freebsd-11-stable/sys/dev/vxge/include/
H A Dvxge-queue.h68 * @event_type: Event type. Includes (but is not restricted to)
81 vxge_hal_event_e event_type; member in struct:vxge_queue_item_t
90 * @event_type: HAL or ULD-defined event type. Note that HAL own
96 typedef void (*vxge_queued_f) (void *data, u32 event_type);
199 * @event_type: Event type. One of the enumerated event types
219 u32 event_type,
228 * @event_type: Event type. One of the enumerated event types
245 u32 event_type,
248 return (vxge_queue_produce(queueh, event_type, context, 0, 0, 0));
244 vxge_queue_produce_context(vxge_queue_h queueh, u32 event_type, void *context) argument
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBroadcaster.i42 BroadcastEventByType (uint32_t event_type, bool unique = false);
57 EventTypeHasListeners (uint32_t event_type);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-usb.c40 get_direction(int transfer_type, int event_type) argument
49 switch(event_type)
63 switch(event_type)
106 switch(uh->event_type)
121 direction = get_direction(uh->transfer_type, uh->event_type);
/freebsd-11-stable/contrib/ofed/libibverbs/examples/
H A Dasyncwatch.c42 static const char *event_name_str(enum ibv_event_type event_type) argument
44 switch (event_type) {
155 printf(" event_type %s (%d), port %d\n",
156 event_name_str(event.event_type),
157 event.event_type, event.element.port_num);
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_event.c70 request.event_type = event->event_type;
128 pqisrc_event_type_to_event_index(unsigned event_type) argument
132 switch (event_type) {
192 DBG_INFO("response.event_type : 0x%x \n", response.event_type);
194 event_index = pqisrc_event_type_to_event_index(response.event_type);
200 pending_event->event_type = response.event_type;
355 softs->event_config.descriptors[i].event_type
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DBroadcaster.h263 /// \param[in] event_type
283 void BroadcastEvent(uint32_t event_type, argument
285 m_broadcaster_sp->BroadcastEvent(event_type, event_data_sp);
288 void BroadcastEvent(uint32_t event_type, EventData *event_data = nullptr) { argument
289 m_broadcaster_sp->BroadcastEvent(event_type, event_data);
292 void BroadcastEventIfUnique(uint32_t event_type, argument
294 m_broadcaster_sp->BroadcastEventIfUnique(event_type, event_data);
361 bool EventTypeHasListeners(uint32_t event_type) { argument
362 return m_broadcaster_sp->EventTypeHasListeners(event_type);
451 void BroadcastEvent(uint32_t event_type, EventDat
[all...]
H A DEvent.h182 Event(Broadcaster *broadcaster, uint32_t event_type,
185 Event(Broadcaster *broadcaster, uint32_t event_type,
188 Event(uint32_t event_type, EventData *data = nullptr);
190 Event(uint32_t event_type, const lldb::EventDataSP &event_data_sp);
/freebsd-11-stable/contrib/libpcap/pcap/
H A Dusb.h81 uint8_t event_type; member in struct:_usb_header
106 uint8_t event_type; member in struct:_usb_header_mmapped
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBroadcaster.h34 void BroadcastEventByType(uint32_t event_type, bool unique = false);
45 bool EventTypeHasListeners(uint32_t event_type);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp30 Event::Event(Broadcaster *broadcaster, uint32_t event_type, EventData *data) argument
31 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
34 Event::Event(Broadcaster *broadcaster, uint32_t event_type, argument
36 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
39 Event::Event(uint32_t event_type, EventData *data) argument
40 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {}
42 Event::Event(uint32_t event_type, const EventDataSP &event_data_sp) argument
43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {}
H A DBroadcaster.cpp150 bool Broadcaster::BroadcasterImpl::EventTypeHasListeners(uint32_t event_type) { argument
153 if (!m_hijacking_listeners.empty() && event_type & m_hijacking_masks.back())
157 if (pair.second & event_type)
200 const uint32_t event_type = event_sp->GetType(); local
209 if ((event_type & m_hijacking_masks.back()) == 0)
226 &m_broadcaster, event_type))
231 if (!(pair.second & event_type))
234 &m_broadcaster, event_type))
242 void Broadcaster::BroadcasterImpl::BroadcastEvent(uint32_t event_type, argument
244 auto event_sp = std::make_shared<Event>(event_type, event_dat
248 BroadcastEvent( uint32_t event_type, const lldb::EventDataSP &event_data_sp) argument
254 BroadcastEventIfUnique( uint32_t event_type, EventData *event_data) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBroadcaster.cpp52 void SBBroadcaster::BroadcastEventByType(uint32_t event_type, bool unique) { argument
54 (uint32_t, bool), event_type, unique);
60 m_opaque_ptr->BroadcastEventIfUnique(event_type);
62 m_opaque_ptr->BroadcastEvent(event_type);
109 bool SBBroadcaster::EventTypeHasListeners(uint32_t event_type) { argument
111 event_type);
114 return m_opaque_ptr->EventTypeHasListeners(event_type);
H A DSBEvent.cpp29 SBEvent::SBEvent(uint32_t event_type, const char *cstr, uint32_t cstr_len) argument
30 : m_event_sp(new Event(event_type, new EventDataBytes(cstr, cstr_len))),
33 event_type, cstr, cstr_len);
80 uint32_t event_type = 0; local
82 event_type = lldb_event->GetType();
85 return event_type;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c112 iJIT_NotifyEvent(iJIT_JVM_EVENT event_type, void *EventSpecificData) argument
152 if ((event_type == iJVM_EVENT_TYPE_ENTER_NIDS ||
153 event_type == iJVM_EVENT_TYPE_LEAVE_NIDS) &&
162 if (event_type == iJVM_EVENT_TYPE_ENTER_NIDS)
200 if (event_type == iJVM_EVENT_TYPE_LEAVE_NIDS)
229 if (event_type == iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED)
236 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
H A Djitprofiling.h240 int JITAPI iJIT_NotifyEvent(iJIT_JVM_EVENT event_type, void *EventSpecificData);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/xray/
H A Dxray_interface.h86 extern uint16_t __xray_register_event_type(const char *event_type);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp102 const uint32_t event_type = local
104 m_interpreter.BroadcastEvent(event_type);
/freebsd-11-stable/sys/dev/nxge/xgehal/
H A Dxge-queue.c69 "event_type: %d removing from the head: "
72 elem->event_type,
82 "event_type: %d removing from the tail: "
85 elem->event_type,
94 "event_type: %d removing from the list: "
97 elem->event_type,
125 * @event_type: Event type. One of the enumerated event types
144 xge_queue_produce(xge_queue_h queueh, int event_type, void *context, argument
174 "event_type: %d adding to the tail: "
177 event_type,
[all...]
/freebsd-11-stable/sys/dev/vxge/vxgehal/
H A Dvxge-queue.c95 vxge_hal_info_log_queue("event_type: %d \
99 elem->event_type, (ptr_t) queue->start_ptr,
104 vxge_hal_info_log_queue("event_type: %d \
108 elem->event_type, (ptr_t) queue->start_ptr,
112 vxge_hal_info_log_queue("event_type: %d \
116 elem->event_type, (ptr_t) queue->start_ptr,
144 * @event_type: Event type. One of the enumerated event types
164 u32 event_type,
184 "queueh = 0x"VXGE_OS_STXFMT", event_type = %d, "
187 (ptr_t) queueh, event_type, (ptr_
163 vxge_queue_produce(vxge_queue_h queueh, u32 event_type, void *context, u32 is_critical, const u32 data_size, void *data) argument
[all...]
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Ddevice.c297 event->event_type = ev.event_type;
299 switch (event->event_type) {
337 switch (event->event_type) {
/freebsd-11-stable/usr.sbin/acpi/acpidump/
H A Dacpidump.h81 u_int32_t event_type; member in struct:TCPAevent

Completed in 173 milliseconds

1234