Lines Matching full:iterate

415  * list_for_each	-	iterate over a list
423 * list_for_each_prev - iterate over a list backwards
431 * list_for_each_safe - iterate over a list safe against removal of list entry
441 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
452 * list_for_each_entry - iterate over list of given type
463 * list_for_each_entry_reverse - iterate backwards over list of given type.
490 * Continue to iterate over list of given type, continuing after
499 * list_for_each_entry_continue_reverse - iterate backwards from the given point
504 * Start to iterate over list of given type backwards, continuing after
513 * list_for_each_entry_from - iterate over list of given type from the current point
518 * Iterate over list of given type, continuing from current position.
525 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
544 * Iterate over list of given type, continuing after current point,
554 * list_for_each_entry_safe_from - iterate over list from current point safe against removal
560 * Iterate over list of given type from current point, safe against
569 * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
575 * Iterate backwards over list of given type, safe against removal
720 * hlist_for_each_entry - iterate over list of given type
731 * hlist_for_each_entry_continue - iterate over a hlist continuing after current point
741 * hlist_for_each_entry_from - iterate over a hlist continuing from current point
750 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
776 * list_for_each_from - iterate over a list from one of its nodes