Lines Matching defs:next

200 	for (pp = np->properties; pp; pp = pp->next) {
244 * of_find_all_nodes - Get next node in global list
304 * to get the highest score. Matching type is next, followed by matching
564 struct device_node *next;
569 next = prev ? prev->sibling : node->child;
570 of_node_get(next);
572 return next;
590 struct device_node *next;
594 next = __of_get_next_child(node, prev);
596 return next;
601 * of_get_next_available_child - Find the next available child node
611 struct device_node *next;
618 next = prev ? prev->sibling : node->child;
619 for (; next; next = next->sibling) {
620 if (!__of_device_is_available(next))
622 if (of_node_get(next))
627 return next;
644 struct device_node *next = NULL;
653 next = prev->sibling;
655 next = node->child;
658 for (; next; next = next->sibling) {
659 if (__of_device_is_fail(next))
661 if (!(of_node_name_eq(next, "cpu") ||
662 __of_node_is_type(next, "cpu")))
664 if (of_node_get(next))
669 return next;
825 * you pass will not be searched, only the next one
853 * searched, only the next one will; typically, you pass
881 * you pass will not be searched, only the next one
912 * you pass will not be searched, only the next one
929 for (pp = np->properties; pp; pp = pp->next) {
989 * you pass will not be searched, only the next one
1536 struct property **next;
1538 for (next = list; *next; next = &(*next)->next) {
1539 if (*next == prop) {
1540 *next = prop->next;
1541 prop->next = NULL;
1557 struct property **next;
1563 prop->next = NULL;
1564 next = &np->properties;
1565 while (*next) {
1566 if (strcmp(prop->name, (*next)->name) == 0) {
1571 next = &(*next)->next;
1573 *next = prop;
1613 prop->next = np->deadprops;
1657 struct property **next, *oldprop;
1664 for (next = &np->properties; *next; next = &(*next)->next) {
1665 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1668 *oldpropp = oldprop = *next;
1672 newprop->next = oldprop->next;
1673 *next = newprop;
1674 oldprop->next = np->deadprops;
1678 newprop->next = NULL;
1679 *next = newprop;
1894 cache_node = of_parse_phandle(np, "next-level-cache", 0);