Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 42) sorted by relevance

12

/include/linux/
A Dof_graph.h37 #define for_each_endpoint_of_node(parent, child) \ argument
38 for (child = of_graph_get_next_endpoint(parent, NULL); child != NULL; \
39 child = of_graph_get_next_endpoint(parent, child))
49 #define for_each_of_graph_port(parent, child) \ argument
50 for (struct device_node *child __free(device_node) = of_graph_get_next_port(parent, NULL);\
51 child != NULL; child = of_graph_get_next_port(parent, child))
61 #define for_each_of_graph_port_endpoint(parent, child) \ argument
62 …for (struct device_node *child __free(device_node) = of_graph_get_next_port_endpoint(parent, NULL)…
63 child != NULL; child = of_graph_get_next_port_endpoint(parent, child))
A Dptrace.h92 return !same_thread_group(child->real_parent, child->parent); in ptrace_reparented()
97 if (unlikely(child->ptrace)) in ptrace_unlink()
98 __ptrace_unlink(child); in ptrace_unlink()
202 INIT_LIST_HEAD(&child->ptrace_entry); in ptrace_init_task()
203 INIT_LIST_HEAD(&child->ptraced); in ptrace_init_task()
204 child->jobctl = 0; in ptrace_init_task()
205 child->ptrace = 0; in ptrace_init_task()
206 child->parent = child->real_parent; in ptrace_init_task()
209 child->ptrace = current->ptrace; in ptrace_init_task()
212 if (child->ptrace & PT_SEIZED) in ptrace_init_task()
[all …]
A Dbootconfig.h53 uint16_t child; member
105 return xbc_node_is_value(node) && node->child != 0; in xbc_node_is_array()
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))
217 for (child = xbc_node_get_subkey(parent); child != NULL ; \
[all …]
A Dfwnode_mdio.h14 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
A Dproperty.h168 for (child = fwnode_get_next_child_node(fwnode, NULL); child; \
169 child = fwnode_get_next_child_node(fwnode, child))
173 for_each_if(fwnode_name_eq(child, name))
176 for (child = fwnode_get_next_available_child_node(fwnode, NULL); child;\
177 child = fwnode_get_next_available_child_node(fwnode, child))
180 struct fwnode_handle *child);
183 for (child = device_get_next_child_node(dev, NULL); child; \
184 child = device_get_next_child_node(dev, child))
193 child; child = device_get_next_child_node(dev, child))
521 for (child = fwnode_graph_get_next_endpoint(fwnode, NULL); child; \
[all …]
A Drbtree_augmented.h150 RBSTRUCT *child; \
154 if (child->RBAUGMENTED > max) \
155 max = child->RBAUGMENTED; \
159 if (child->RBAUGMENTED > max) \
160 max = child->RBAUGMENTED; \
227 struct rb_node *child = node->rb_right; in __rb_erase_augmented() local
243 if (child) { in __rb_erase_augmented()
244 child->__rb_parent_color = pc; in __rb_erase_augmented()
249 } else if (!child) { in __rb_erase_augmented()
259 tmp = child->rb_left; in __rb_erase_augmented()
[all …]
A Dleds-ti-lmu-common.h41 struct fwnode_handle *child,
44 int ti_lmu_common_get_brt_res(struct device *dev, struct fwnode_handle *child,
A Dof.h57 struct device_node *child; member
1467 for (child = of_get_next_child(parent, NULL); child != NULL; \
1468 child = of_get_next_child(parent, child))
1473 child != NULL; \
1474 child = of_get_next_child(parent, child))
1480 child = of_get_next_child_with_prefix(parent, child, prefix))
1483 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1484 child = of_get_next_available_child(parent, child))
1486 for (child = of_get_next_reserved_child(parent, NULL); child != NULL; \
1487 child = of_get_next_reserved_child(parent, child))
[all …]
A Dof_mdio.h16 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
A Dof_irq.h49 extern struct device_node *of_irq_find_parent(struct device_node *child);
85 static inline void *of_irq_find_parent(struct device_node *child) in of_irq_find_parent() argument
A Dlivepatch.h201 void klp_copy_process(struct task_struct *child);
244 static inline void klp_copy_process(struct task_struct *child) {} in klp_copy_process() argument
A Dexportfs.h262 struct dentry *child);
263 struct dentry * (*get_parent)(struct dentry *child);
A Duser_namespace.h199 const struct user_namespace *child);
232 const struct user_namespace *child) in in_userns() argument
A Dsched.h1772 #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0) argument
1773 #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0) argument
1777 #define conditional_stopped_child_used_math(condition, child) \ argument
1778 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
1782 #define copy_to_stopped_child_used_math(child) \ argument
1783 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
A Dblk-crypto-profile.h220 const struct blk_crypto_profile *child);
A Dgameport.h39 struct gameport *parent, *child; member
A Dfwnode.h165 struct fwnode_handle *child);
A Dsh_clk.h84 int clk_reparent(struct clk *child, struct clk *parent);
/include/trace/events/
A Dtimer_migration.h36 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;
55 __entry->groupmask = child->groupmask;
244 __field( void *, child )
256 __entry->child = child;
260 __entry->child_evt_expiry = child ? child->groupevt.nextevt.expires : 0;
[all …]
A Dsched.h398 TP_PROTO(struct task_struct *parent, struct task_struct *child),
400 TP_ARGS(parent, child),
405 __string( child_comm, child->comm )
413 __entry->child_pid = child->pid;
/include/crypto/internal/
A Drsa.h60 static inline int rsa_set_key(struct crypto_akcipher *child, in rsa_set_key() argument
69 err = crypto_akcipher_set_pub_key(child, key, keylen); in rsa_set_key()
71 err = crypto_akcipher_set_priv_key(child, key, keylen); in rsa_set_key()
76 err = crypto_akcipher_maxsize(child); in rsa_set_key()
A Dgeniv.h17 struct crypto_aead *child; member
/include/linux/gpio/
A Ddriver.h890 #define for_each_gpiochip_node(dev, child) \ argument
891 device_for_each_child_node(dev, child) \
892 for_each_if(fwnode_property_present(child, "gpio-controller"))
896 struct fwnode_handle *child; in gpiochip_node_count() local
899 for_each_gpiochip_node(dev, child) in gpiochip_node_count()
/include/linux/sched/
A Dtopology.h85 struct sched_domain __rcu *child; /* bottom domain must be null terminated */ member
/include/net/
A Dinet_connection_sock.h269 struct sock *child);
272 struct sock *inet_csk_complete_hashdance(struct sock *sk, struct sock *child,

Completed in 44 milliseconds

12