| /include/drm/ |
| A D | drm_managed.h | 25 #define drmm_add_action(dev, action, data) \ argument 26 __drmm_add_action(dev, action, data, #action) 29 drmres_release_t action, 41 #define drmm_add_action_or_reset(dev, action, data) \ argument 42 __drmm_add_action_or_reset(dev, action, data, #action) 45 drmres_release_t action, 49 drmres_release_t action,
|
| /include/linux/device/ |
| A D | devres.h | 131 int devm_remove_action_nowarn(struct device *dev, void (*action)(void *), void *data); 143 void devm_remove_action(struct device *dev, void (*action)(void *), void *data) in devm_remove_action() 145 WARN_ON(devm_remove_action_nowarn(dev, action, data)); in devm_remove_action() 148 void devm_release_action(struct device *dev, void (*action)(void *), void *data); 151 #define devm_add_action(dev, action, data) \ argument 152 __devm_add_action(dev, action, data, #action) 159 ret = __devm_add_action(dev, action, data, name); in __devm_add_action_or_reset() 161 action(data); in __devm_add_action_or_reset() 165 #define devm_add_action_or_reset(dev, action, data) \ argument 166 __devm_add_action_or_reset(dev, action, data, #action) [all …]
|
| /include/linux/mfd/ |
| A D | rave-sp.h | 44 static inline u8 rave_sp_action_unpack_event(unsigned long action) in rave_sp_action_unpack_event() argument 46 return action; in rave_sp_action_unpack_event() 49 static inline u8 rave_sp_action_unpack_value(unsigned long action) in rave_sp_action_unpack_value() argument 51 return action >> 8; in rave_sp_action_unpack_value()
|
| /include/net/ |
| A D | flow_offload.h | 293 int action; member 341 return action->num_entries; in flow_action_has_entries() 352 return action->num_entries == 1; in flow_offload_has_one_action() 358 return entry == &action->entries[action->num_entries - 1]; in flow_action_is_last_entry() 374 if (flow_offload_has_one_action(action)) in flow_action_mixed_hw_stats_check() 377 flow_action_for_each(i, action_entry, action) { in flow_action_mixed_hw_stats_check() 390 WARN_ON(!flow_action_has_entries(action)); in flow_action_first_entry_get() 391 return &action->entries[0]; in flow_action_first_entry_get() 402 if (!flow_action_has_entries(action)) in __flow_action_hw_stats_check() 441 struct flow_action action; member [all …]
|
| /include/trace/events/ |
| A D | power.h | 268 TP_PROTO(const char *action, int val, bool start), 270 TP_ARGS(action, val, start), 273 __field(const char *, action) 279 __entry->action = action; 405 TP_ARGS(action, prev_value, curr_value), 408 __field( enum pm_qos_req_action, action ) 414 __entry->action = action; 420 __print_symbolic(__entry->action, 431 TP_ARGS(action, prev_value, curr_value) 438 TP_ARGS(action, prev_value, curr_value), [all …]
|
| A D | irq.h | 55 TP_PROTO(int irq, struct irqaction *action), 57 TP_ARGS(irq, action), 61 __string( name, action->name ) 85 TP_PROTO(int irq, struct irqaction *action, int ret), 87 TP_ARGS(irq, action, ret),
|
| /include/linux/ |
| A D | wait_bit.h | 27 …ead *wq_head, struct wait_bit_queue_entry *wbq_entry, wait_bit_action_f *action, unsigned int mode… 28 …ead *wq_head, struct wait_bit_queue_entry *wbq_entry, wait_bit_action_f *action, unsigned int mode… 30 int out_of_line_wait_on_bit(unsigned long *word, int, wait_bit_action_f *action, unsigned int mode); 31 int out_of_line_wait_on_bit_timeout(unsigned long *word, int, wait_bit_action_f *action, unsigned i… 32 int out_of_line_wait_on_bit_lock(unsigned long *word, int, wait_bit_action_f *action, unsigned int … 161 wait_on_bit_action(unsigned long *word, int bit, wait_bit_action_f *action, in wait_on_bit_action() argument 167 return out_of_line_wait_on_bit(word, bit, action, mode); in wait_on_bit_action() 240 wait_on_bit_lock_action(unsigned long *word, int bit, wait_bit_action_f *action, in wait_on_bit_lock_action() argument 246 return out_of_line_wait_on_bit_lock(word, bit, action, mode); in wait_on_bit_lock_action()
|
| A D | acpi_amd_wbrf.h | 51 int acpi_amd_wbrf_add_remove(struct device *dev, uint8_t action, struct wbrf_ranges_in_out *in); 64 int acpi_amd_wbrf_add_remove(struct device *dev, uint8_t action, struct wbrf_ranges_in_out *in) in acpi_amd_wbrf_add_remove() argument
|
| A D | ccp.h | 172 enum ccp_aes_action action; member 233 enum ccp_aes_action action; member 345 enum ccp_des3_action action; member
|
| A D | ieee80211.h | 1512 u8 action; member 1516 u8 action; member 1598 } __packed action; member 4700 u8 action; in ieee80211_is_protected_dual_of_public_action() local 4710 action != WLAN_PUB_ACTION_MSMT_PILOT && in ieee80211_is_protected_dual_of_public_action() 4712 action != WLAN_PUB_ACTION_LOC_TRACK_NOTI && in ieee80211_is_protected_dual_of_public_action() 4713 action != WLAN_PUB_ACTION_FTM_REQUEST && in ieee80211_is_protected_dual_of_public_action() 4714 action != WLAN_PUB_ACTION_FTM_RESPONSE && in ieee80211_is_protected_dual_of_public_action() 4715 action != WLAN_PUB_ACTION_FILS_DISCOVERY && in ieee80211_is_protected_dual_of_public_action() 4716 action != WLAN_PUB_ACTION_VENDOR_SPECIFIC; in ieee80211_is_protected_dual_of_public_action() [all …]
|
| A D | irqdesc.h | 72 struct irqaction *action; /* IRQ action list */ member 194 return desc && desc->action != NULL; in irq_desc_has_action()
|
| A D | kobject.h | 214 int kobject_uevent(struct kobject *kobj, enum kobject_action action); 215 int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
|
| /include/rdma/ |
| A D | uverbs_std_types.h | 114 static inline void uverbs_flow_action_fill_action(struct ib_flow_action *action, in uverbs_flow_action_fill_action() argument 119 atomic_set(&action->usecnt, 0); in uverbs_flow_action_fill_action() 120 action->device = ib_dev; in uverbs_flow_action_fill_action() 121 action->type = type; in uverbs_flow_action_fill_action() 122 action->uobject = uobj; in uverbs_flow_action_fill_action() 123 uobj->object = action; in uverbs_flow_action_fill_action()
|
| /include/linux/platform_data/ |
| A D | mlxreg.h | 82 int (*user_handler)(void *handle, enum mlxreg_hotplug_kind kind, u8 action); 107 enum mlxreg_hotplug_device_action action; member 109 int (*user_handler)(void *handle, enum mlxreg_hotplug_kind kind, u8 action);
|
| /include/kunit/ |
| A D | resource.h | 434 int kunit_add_action(struct kunit *test, kunit_action_t *action, void *ctx); 459 int kunit_add_action_or_reset(struct kunit *test, kunit_action_t *action, 477 kunit_action_t *action, 501 kunit_action_t *action,
|
| A D | attributes.h | 48 struct kunit_attr_filter filter, char *action, int *err);
|
| /include/net/tc_act/ |
| A D | tc_connmark.h | 10 int action; member
|
| A D | tc_nat.h | 9 int action; member
|
| A D | tc_csum.h | 11 int action; member
|
| A D | tc_ctinfo.h | 10 int action; member
|
| A D | tc_police.h | 8 int action; member 40 int action; member
|
| /include/misc/ |
| A D | altera.h | 17 u8 *action; member
|
| /include/uapi/xen/ |
| A D | gntalloc.h | 77 __u32 action; member
|
| /include/uapi/linux/ |
| A D | fib_rules.h | 28 __u8 action; member
|
| /include/uapi/scsi/ |
| A D | scsi_bsg_fc.h | 160 __u8 action; /* fragment_id for CT REJECT */ member
|