Lines Matching defs:next

199 	for (pp = np->properties; pp; pp = pp->next) {
243 * of_find_all_nodes - Get next node in global list
468 * to get the highest score. Matching type is next, followed by matching
705 struct device_node *next;
710 next = prev ? prev->sibling : node->child;
711 for (; next; next = next->sibling)
712 if (of_node_get(next))
715 return next;
733 struct device_node *next;
737 next = __of_get_next_child(node, prev);
739 return next;
744 * of_get_next_available_child - Find the next available child node
754 struct device_node *next;
761 next = prev ? prev->sibling : node->child;
762 for (; next; next = next->sibling) {
763 if (!__of_device_is_available(next))
765 if (of_node_get(next))
770 return next;
784 struct device_node *next = NULL;
793 next = prev->sibling;
795 next = node->child;
798 for (; next; next = next->sibling) {
799 if (!(of_node_name_eq(next, "cpu") ||
800 __of_node_is_type(next, "cpu")))
802 if (of_node_get(next))
807 return next;
963 * you pass will not be searched, only the next one
991 * searched, only the next one will; typically, you pass
1019 * you pass will not be searched, only the next one
1050 * you pass will not be searched, only the next one
1067 for (pp = np->properties; pp; pp = pp->next) {
1127 * you pass will not be searched, only the next one
1788 struct property **next;
1790 prop->next = NULL;
1791 next = &np->properties;
1792 while (*next) {
1793 if (strcmp(prop->name, (*next)->name) == 0)
1797 next = &(*next)->next;
1799 *next = prop;
1833 struct property **next;
1835 for (next = &np->properties; *next; next = &(*next)->next) {
1836 if (*next == prop)
1839 if (*next == NULL)
1843 *next = prop->next;
1844 prop->next = np->deadprops;
1889 struct property **next, *oldprop;
1891 for (next = &np->properties; *next; next = &(*next)->next) {
1892 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1895 *oldpropp = oldprop = *next;
1899 newprop->next = oldprop->next;
1900 *next = newprop;
1901 oldprop->next = np->deadprops;
1905 newprop->next = NULL;
1906 *next = newprop;
2177 cache_node = of_parse_phandle(np, "next-level-cache", 0);