Lines Matching full:over
404 * list_for_each - iterate over a list
412 * list_for_each_prev - iterate over a list backwards
420 * list_for_each_safe - iterate over a list safe against removal of list entry
430 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
441 * list_for_each_entry - iterate over list of given type
452 * list_for_each_entry_reverse - iterate backwards over list of given type.
474 * list_for_each_entry_continue - continue iteration over list of given type
479 * Continue to iterate over list of given type, continuing after
493 * Start to iterate over list of given type backwards, continuing after
502 * list_for_each_entry_from - iterate over list of given type from the current point
507 * Iterate over list of given type, continuing from current position.
514 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
533 * Iterate over list of given type, continuing after current point,
543 * list_for_each_entry_safe_from - iterate over list from current point safe against removal
549 * Iterate over list of given type from current point, safe against
558 * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
564 * Iterate backwards over list of given type, safe against removal
709 * hlist_for_each_entry - iterate over list of given type
720 * hlist_for_each_entry_continue - iterate over a hlist continuing after current point
730 * hlist_for_each_entry_from - iterate over a hlist continuing from current point
739 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
765 * list_for_each_from - iterate over a list from one of its nodes