Lines Matching defs:next
448 struct acpi_data_node *dn, *next;
453 list_for_each_entry_safe_reverse(dn, next, list, sibling) {
1035 * acpi_get_next_subnode - Return the next child node handle for a fwnode
1036 * @fwnode: Firmware node to find the next child node for.
1044 struct list_head *next;
1059 next = adev->node.next;
1060 if (next == head) {
1064 child_adev = list_entry(next, struct acpi_device, node);
1097 next = dn->sibling.next;
1098 if (next == head)
1101 dn = list_entry(next, struct acpi_data_node, sibling);
1153 * acpi_graph_get_next_endpoint - Get next endpoint ACPI firmware node
1157 * Looks up next endpoint ACPI firmware node below a given @fwnode. Returns
1158 * %NULL if there is no next endpoint or in case of error. In case of success
1159 * the next endpoint is returned.