| /include/trace/events/ |
| D | rv.h | 14 TP_PROTO(char *state, char *event, char *next_state, bool final_state), 16 TP_ARGS(state, event, next_state, final_state), 20 __array( char, event, MAX_DA_NAME_LEN ) 27 memcpy(__entry->event, event, MAX_DA_NAME_LEN); 34 __entry->event, 41 TP_PROTO(char *state, char *event), 43 TP_ARGS(state, event), 47 __array( char, event, MAX_DA_NAME_LEN ) 52 memcpy(__entry->event, event, MAX_DA_NAME_LEN); 56 __entry->event, [all …]
|
| D | i2c_slave.h | 31 TP_PROTO(const struct i2c_client *client, enum i2c_slave_event event, 33 TP_ARGS(client, event, val, cb_ret), 39 __field(enum i2c_slave_event, event ) 45 __entry->event = event; 47 switch (event) { 61 show_event_type(__entry->event), __entry->len, __entry->buf
|
| D | asoc.h | 63 TP_PROTO(struct snd_soc_card *card, int event), 65 TP_ARGS(card, event), 69 __field( int, event ) 74 __entry->event = event; 77 TP_printk("card=%s event=%d", __get_str(name), (int)__entry->event) 82 TP_PROTO(struct snd_soc_card *card, int event), 84 TP_ARGS(card, event) 90 TP_PROTO(struct snd_soc_card *card, int event), 92 TP_ARGS(card, event)
|
| /include/linux/perf/ |
| D | riscv_pmu.h | 59 u64 (*ctr_read)(struct perf_event *event); 60 int (*ctr_get_idx)(struct perf_event *event); 62 void (*ctr_clear_idx)(struct perf_event *event); 63 void (*ctr_start)(struct perf_event *event, u64 init_val); 64 void (*ctr_stop)(struct perf_event *event, unsigned long flag); 65 int (*event_map)(struct perf_event *event, u64 *config); 66 void (*event_init)(struct perf_event *event); 67 void (*event_mapped)(struct perf_event *event, struct mm_struct *mm); 68 void (*event_unmapped)(struct perf_event *event, struct mm_struct *mm); 69 uint8_t (*csr_index)(struct perf_event *event); [all …]
|
| D | arm_pmu.h | 89 void (*enable)(struct perf_event *event); 90 void (*disable)(struct perf_event *event); 92 struct perf_event *event); 94 struct perf_event *event); 97 u64 (*read_counter)(struct perf_event *event); 98 void (*write_counter)(struct perf_event *event, u64 val); 102 int (*map_event)(struct perf_event *event); 124 u64 armpmu_event_update(struct perf_event *event); 126 int armpmu_event_set_period(struct perf_event *event); 128 int armpmu_map_event(struct perf_event *event,
|
| /include/linux/ |
| D | perf_event.h | 379 int (*event_init) (struct perf_event *event); 385 void (*event_mapped) (struct perf_event *event, struct mm_struct *mm); /* optional */ 386 void (*event_unmapped) (struct perf_event *event, struct mm_struct *mm); /* optional */ 416 int (*add) (struct perf_event *event, int flags); 417 void (*del) (struct perf_event *event, int flags); 449 void (*start) (struct perf_event *event, int flags); 450 void (*stop) (struct perf_event *event, int flags); 458 void (*read) (struct perf_event *event); 493 int (*event_idx) (struct perf_event *event); /*optional */ 519 void *(*setup_aux) (struct perf_event *event, void **pages, [all …]
|
| D | tpm_eventlog.h | 102 u8 event[]; member 107 u8 event[]; member 160 static __always_inline int __calc_tpm2_event_size(struct tcg_pcr_event2_head *event, in __calc_tpm2_event_size() argument 178 marker = event; in __calc_tpm2_event_size() 180 marker = marker + sizeof(event->pcr_idx) + sizeof(event->event_type) in __calc_tpm2_event_size() 181 + sizeof(event->count); in __calc_tpm2_event_size() 196 event = (struct tcg_pcr_event2_head *)mapping; in __calc_tpm2_event_size() 201 count = event->count; in __calc_tpm2_event_size() 202 event_type = event->event_type; in __calc_tpm2_event_size() 212 efispecid = (struct tcg_efi_specid_event_head *)event_header->event; in __calc_tpm2_event_size() [all …]
|
| D | trace_events.h | 61 struct trace_event *event); 145 int flags, struct trace_event *event); 160 extern int register_trace_event(struct trace_event *event); 161 extern int unregister_trace_event(struct trace_event *event); 303 int (*reg)(struct trace_event_call *event, 311 extern int trace_event_reg(struct trace_event_call *event, 316 struct ring_buffer_event *event; member 386 struct trace_event event; member 510 const char *event); 580 struct synth_event *event; member [all …]
|
| D | ptrace.h | 36 #define PT_EVENT_FLAG(event) (1 << (PT_OPT_FLAG_SHIFT + (event))) argument 133 static inline bool ptrace_event_enabled(struct task_struct *task, int event) in ptrace_event_enabled() argument 135 return task->ptrace & PT_EVENT_FLAG(event); in ptrace_event_enabled() 148 static inline void ptrace_event(int event, unsigned long message) in ptrace_event() argument 150 if (unlikely(ptrace_event_enabled(current, event))) { in ptrace_event() 151 ptrace_notify((event << 8) | SIGTRAP, message); in ptrace_event() 152 } else if (event == PTRACE_EVENT_EXEC) { in ptrace_event() 170 static inline void ptrace_event_pid(int event, struct pid *pid) in ptrace_event_pid() argument 187 ptrace_event(event, message); in ptrace_event_pid()
|
| D | pm.h | 60 int event; member 554 #define PMSG_INVALID ((struct pm_message){ .event = PM_EVENT_INVALID, }) 555 #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, }) 556 #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, }) 557 #define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, }) 558 #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, }) 559 #define PMSG_HIBERNATE ((struct pm_message){ .event = PM_EVENT_HIBERNATE, }) 560 #define PMSG_RESUME ((struct pm_message){ .event = PM_EVENT_RESUME, }) 561 #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) 562 #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) [all …]
|
| D | mmu_notifier.h | 276 enum mmu_notifier_event event; member 504 enum mmu_notifier_event event, in mmu_notifier_range_init() argument 510 range->event = event; in mmu_notifier_range_init() 519 enum mmu_notifier_event event, unsigned int flags, in mmu_notifier_range_init_owner() argument 523 mmu_notifier_range_init(range, event, flags, mm, start, end); in mmu_notifier_range_init_owner() 590 #define mmu_notifier_range_init(range,event,flags,mm,start,end) \ argument 592 #define mmu_notifier_range_init_owner(range, event, flags, mm, start, \ argument
|
| /include/rv/ |
| D | automata.h | 32 static char *model_get_event_name_##name(enum events_##name event) \ 34 if ((event < 0) || (event >= event_max_##name)) \ 37 return automaton_##name.event_names[event]; \ 55 enum events_##name event) \ 60 if ((event < 0) || (event >= event_max_##name)) \ 63 return automaton_##name.function[curr_state][event]; \
|
| D | da_monitor.h | 24 static inline char *format_react_msg_##name(type curr_state, type event) \ 29 model_get_event_name_##name(event), \ 48 static inline char *format_react_msg_##name(type curr_state, type event) \ 157 da_event_##name(struct da_monitor *da_mon, enum events_##name event) \ 160 type next_state = model_get_next_state_##name(curr_state, event); \ 166 model_get_event_name_##name(event), \ 174 cond_react_##name(format_react_msg_##name(curr_state, event)); \ 177 model_get_event_name_##name(event)); \ 188 enum events_##name event) \ 191 type next_state = model_get_next_state_##name(curr_state, event); \ [all …]
|
| /include/linux/firmware/ |
| D | xlnx-event-manager.h | 26 const u32 event, const bool wake, 30 const u32 event, event_cb_func_t cb_fun, void *data); 33 const u32 event, const bool wake, in xlnx_register_event() argument 40 const u32 event, event_cb_func_t cb_fun, void *data) in xlnx_unregister_event() argument
|
| /include/net/netfilter/ |
| D | nf_conntrack_ecache.h | 98 nf_conntrack_event_cache(enum ip_conntrack_events event, struct nf_conn *ct) in nf_conntrack_event_cache() argument 111 set_bit(event, &e->cache); in nf_conntrack_event_cache() 116 nf_conntrack_event_report(enum ip_conntrack_events event, struct nf_conn *ct, in nf_conntrack_event_report() argument 121 return nf_conntrack_eventmask_report(1 << event, ct, portid, report); in nf_conntrack_event_report() 127 nf_conntrack_event(enum ip_conntrack_events event, struct nf_conn *ct) in nf_conntrack_event() argument 131 return nf_conntrack_eventmask_report(1 << event, ct, 0, 0); in nf_conntrack_event() 137 void nf_ct_expect_event_report(enum ip_conntrack_expect_events event,
|
| /include/net/sctp/ |
| D | ulpevent.h | 145 void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event, 147 void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event, 149 void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event, 152 __u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event); 176 static inline bool sctp_ulpevent_is_enabled(const struct sctp_ulpevent *event, in sctp_ulpevent_is_enabled() argument 181 if (!sctp_ulpevent_is_notification(event)) in sctp_ulpevent_is_enabled() 184 sn_type = sctp_ulpevent_get_notification_type(event); in sctp_ulpevent_is_enabled()
|
| /include/trace/hooks/ |
| D | thermal.h | 13 TP_PROTO(int event, int tz_id, int *enable_thermal_genl), 14 TP_ARGS(event, tz_id, enable_thermal_genl));
|
| /include/sound/ |
| D | soc-dapm.h | 69 .num_kcontrols = 0, .reg = SND_SOC_NOPM, .event = wevent, \ 74 .num_kcontrols = 0, .reg = SND_SOC_NOPM, .event = wevent, \ 79 .num_kcontrols = 0, .reg = SND_SOC_NOPM, .event = wevent, \ 84 .num_kcontrols = 0, .reg = SND_SOC_NOPM, .event = wevent, \ 165 .event = wevent, .event_flags = wflags} 172 .event = wevent, .event_flags = wflags} 179 .event = wevent, .event_flags = wflags} 186 .num_kcontrols = wncontrols, .event = wevent, .event_flags = wflags} 193 .event = wevent, .event_flags = wflags} 200 .event = wevent, .event_flags = wflags} [all …]
|
| D | seq_kernel.h | 71 int snd_seq_expand_var_event(const struct snd_seq_event *event, int count, char *buf, 73 int snd_seq_expand_var_event_at(const struct snd_seq_event *event, int count, 75 int snd_seq_dump_var_event(const struct snd_seq_event *event,
|
| /include/linux/mfd/ |
| D | rave-sp.h | 39 static inline unsigned long rave_sp_action_pack(u8 event, u8 value) in rave_sp_action_pack() argument 41 return ((unsigned long)value << 8) | event; in rave_sp_action_pack()
|
| D | dln2.h | 37 int dln2_register_event_cb(struct platform_device *pdev, u16 event, 46 void dln2_unregister_event_cb(struct platform_device *pdev, u16 event);
|
| /include/rdma/ |
| D | iw_cm.h | 24 enum iw_cm_event_type event; member 43 struct iw_cm_event *event); 54 struct iw_cm_event *event);
|
| /include/linux/soc/mediatek/ |
| D | mtk-cmdq.h | 232 int cmdq_pkt_wfe(struct cmdq_pkt *pkt, u16 event, bool clear); 247 int cmdq_pkt_acquire_event(struct cmdq_pkt *pkt, u16 event); 256 int cmdq_pkt_clear_event(struct cmdq_pkt *pkt, u16 event); 265 int cmdq_pkt_set_event(struct cmdq_pkt *pkt, u16 event); 465 static inline int cmdq_pkt_wfe(struct cmdq_pkt *pkt, u16 event, bool clear) in cmdq_pkt_wfe() argument 470 static inline int cmdq_pkt_clear_event(struct cmdq_pkt *pkt, u16 event) in cmdq_pkt_clear_event() argument 475 static inline int cmdq_pkt_set_event(struct cmdq_pkt *pkt, u16 event) in cmdq_pkt_set_event() argument
|
| /include/linux/dma/ |
| D | k3-event-router.h | 13 int (*set_event)(void *priv, u32 event);
|
| /include/net/phonet/ |
| D | pn_dev.h | 41 void phonet_address_notify(int event, struct net_device *dev, u8 addr); 45 void rtm_phonet_notify(int event, struct net_device *dev, u8 dst);
|