| /include/linux/ |
| D | ptrace.h | 49 extern long arch_ptrace(struct task_struct *child, long request, 54 extern int ptrace_request(struct task_struct *child, long request, 57 extern void __ptrace_link(struct task_struct *child, 60 extern void __ptrace_unlink(struct task_struct *child); 90 static inline int ptrace_reparented(struct task_struct *child) in ptrace_reparented() argument 92 return !same_thread_group(child->real_parent, child->parent); in ptrace_reparented() 95 static inline void ptrace_unlink(struct task_struct *child) in ptrace_unlink() argument 97 if (unlikely(child->ptrace)) in ptrace_unlink() 98 __ptrace_unlink(child); in ptrace_unlink() 200 static inline void ptrace_init_task(struct task_struct *child, bool ptrace) in ptrace_init_task() argument [all …]
|
| D | bootconfig.h | 53 uint16_t child; member 105 return xbc_node_is_value(node) && node->child != 0; in xbc_node_is_array() 120 (!node->child || xbc_node_is_value(xbc_node_get_child(node))); in xbc_node_is_leaf() 174 struct xbc_node *child = xbc_node_get_child(node); in xbc_node_get_subkey() local 176 if (child && xbc_node_is_value(child)) in xbc_node_get_subkey() 177 return xbc_node_get_next(child); in xbc_node_get_subkey() 179 return child; in xbc_node_get_subkey() 204 #define xbc_node_for_each_child(parent, child) \ argument 205 for (child = xbc_node_get_child(parent); child != NULL ; \ 206 child = xbc_node_get_next(child)) [all …]
|
| D | fwnode_mdio.h | 14 struct fwnode_handle *child, u32 addr); 17 struct fwnode_handle *child, u32 addr); 22 struct fwnode_handle *child, u32 addr) in fwnode_mdiobus_phy_device_register() argument 28 struct fwnode_handle *child, in fwnode_mdiobus_register_phy() argument
|
| D | property.h | 159 const struct fwnode_handle *fwnode, struct fwnode_handle *child); 161 const struct fwnode_handle *fwnode, struct fwnode_handle *child); 163 #define fwnode_for_each_child_node(fwnode, child) \ argument 164 for (child = fwnode_get_next_child_node(fwnode, NULL); child; \ 165 child = fwnode_get_next_child_node(fwnode, child)) 167 #define fwnode_for_each_available_child_node(fwnode, child) \ argument 168 for (child = fwnode_get_next_available_child_node(fwnode, NULL); child;\ 169 child = fwnode_get_next_available_child_node(fwnode, child)) 172 struct fwnode_handle *child); 174 #define device_for_each_child_node(dev, child) \ argument [all …]
|
| D | rbtree_augmented.h | 150 RBSTRUCT *child; \ 153 child = rb_entry(node->RBFIELD.rb_left, RBSTRUCT, RBFIELD); \ 154 if (child->RBAUGMENTED > max) \ 155 max = child->RBAUGMENTED; \ 158 child = rb_entry(node->RBFIELD.rb_right, RBSTRUCT, RBFIELD); \ 159 if (child->RBAUGMENTED > max) \ 160 max = child->RBAUGMENTED; \ 227 struct rb_node *child = node->rb_right; in __rb_erase_augmented() local 242 __rb_change_child(node, child, parent, root); in __rb_erase_augmented() 243 if (child) { in __rb_erase_augmented() [all …]
|
| D | of_graph.h | 36 #define for_each_endpoint_of_node(parent, child) \ argument 37 for (child = of_graph_get_next_endpoint(parent, NULL); child != NULL; \ 38 child = of_graph_get_next_endpoint(parent, child))
|
| D | leds-ti-lmu-common.h | 41 struct fwnode_handle *child, 44 int ti_lmu_common_get_brt_res(struct device *dev, struct fwnode_handle *child,
|
| D | of.h | 57 struct device_node *child; member 1461 #define for_each_child_of_node(parent, child) \ argument 1462 for (child = of_get_next_child(parent, NULL); child != NULL; \ 1463 child = of_get_next_child(parent, child)) 1465 #define for_each_child_of_node_scoped(parent, child) \ argument 1466 for (struct device_node *child __free(device_node) = \ 1468 child != NULL; \ 1469 child = of_get_next_child(parent, child)) 1471 #define for_each_available_child_of_node(parent, child) \ argument 1472 for (child = of_get_next_available_child(parent, NULL); child != NULL; \ [all …]
|
| D | of_mdio.h | 16 bool of_mdiobus_child_is_phy(struct device_node *child); 51 struct device_node *child, u32 addr); 76 static inline bool of_mdiobus_child_is_phy(struct device_node *child) in of_mdiobus_child_is_phy() argument 147 struct device_node *child, u32 addr) in of_mdiobus_phy_device_register() argument
|
| D | of_irq.h | 49 extern struct device_node *of_irq_find_parent(struct device_node *child); 84 static inline void *of_irq_find_parent(struct device_node *child) in of_irq_find_parent() argument
|
| D | livepatch.h | 201 void klp_copy_process(struct task_struct *child); 244 static inline void klp_copy_process(struct task_struct *child) {} in klp_copy_process() argument
|
| D | blk-crypto-profile.h | 167 const struct blk_crypto_profile *child);
|
| D | exportfs.h | 231 struct dentry *child); 232 struct dentry * (*get_parent)(struct dentry *child);
|
| D | user_namespace.h | 193 const struct user_namespace *child); 226 const struct user_namespace *child) in in_userns() argument
|
| D | sched.h | 1805 #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0) argument 1806 #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0) argument 1810 #define conditional_stopped_child_used_math(condition, child) \ argument 1811 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0) 1815 #define copy_to_stopped_child_used_math(child) \ argument 1816 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
|
| D | gameport.h | 39 struct gameport *parent, *child; member
|
| D | fwnode.h | 162 struct fwnode_handle *child);
|
| D | sh_clk.h | 84 int clk_reparent(struct clk *child, struct clk *parent);
|
| D | usb.h | 786 #define usb_hub_for_each_child(hdev, port1, child) \ argument 787 for (port1 = 1, child = usb_hub_find_child(hdev, port1); \ 789 child = usb_hub_find_child(hdev, ++port1)) \ 790 if (!child) continue; else
|
| /include/trace/events/ |
| D | timer_migration.h | 36 TP_PROTO(struct tmigr_group *child), 38 TP_ARGS(child), 41 __field( void *, child ) 50 __entry->child = child; 51 __entry->parent = child->parent; 52 __entry->lvl = child->parent->level; 53 __entry->numa_node = child->parent->numa_node; 54 __entry->num_children = child->parent->num_children; 55 __entry->groupmask = child->groupmask; 59 __entry->child, __entry->groupmask, __entry->parent, [all …]
|
| /include/crypto/internal/ |
| D | geniv.h | 17 struct crypto_aead *child; member
|
| /include/scsi/ |
| D | sas_ata.h | 41 struct domain_device *child, int phy_id); 124 struct domain_device *child, int phy_id) in sas_ata_add_dev() argument
|
| /include/linux/gpio/ |
| D | driver.h | 873 #define for_each_gpiochip_node(dev, child) \ argument 874 device_for_each_child_node(dev, child) \ 875 if (!fwnode_property_present(child, "gpio-controller")) {} else 879 struct fwnode_handle *child; in gpiochip_node_count() local 882 for_each_gpiochip_node(dev, child) in gpiochip_node_count()
|
| /include/linux/sched/ |
| D | topology.h | 91 struct sched_domain __rcu *child; /* bottom domain must be null terminated */ member
|
| /include/net/ |
| D | inet_connection_sock.h | 270 struct sock *child); 273 struct sock *inet_csk_complete_hashdance(struct sock *sk, struct sock *child,
|