Lines Matching full:of
12 * Some of the internal functions ("__xxx") are useful when
174 * @head: the head of the list
197 * in the process of modifying either member (next or prev)
212 * @head: the head of the list
252 * This helper moves the initial part of @head, up to and
332 * Each of the lists is a queue.
347 * @type: the type of the struct this is embedded in.
348 * @member: the name of the list_head within the struct.
356 * @type: the type of the struct this is embedded in.
357 * @member: the name of the list_head within the struct.
367 * @type: the type of the struct this is embedded in.
368 * @member: the name of the list_head within the struct.
378 * @type: the type of the struct this is embedded in.
379 * @member: the name of the list_head within the struct.
389 * @member: the name of the list_head within the struct.
397 * @member: the name of the list_head within the struct.
419 * list_for_each_safe - iterate over a list safe against removal of list entry
429 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
440 * list_for_each_entry - iterate over list of given type
443 * @member: the name of the list_head within the struct.
451 * list_for_each_entry_reverse - iterate backwards over list of given type.
454 * @member: the name of the list_head within the struct.
464 * @head: the head of the list
465 * @member: the name of the list_head within the struct.
473 * list_for_each_entry_continue - continue iteration over list of given type
476 * @member: the name of the list_head within the struct.
478 * Continue to iterate over list of given type, continuing after
490 * @member: the name of the list_head within the struct.
492 * Start to iterate over list of given type backwards, continuing after
501 * list_for_each_entry_from - iterate over list of given type from the current point
504 * @member: the name of the list_head within the struct.
506 * Iterate over list of given type, continuing from current position.
513 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
517 * @member: the name of the list_head within the struct.
530 * @member: the name of the list_head within the struct.
532 * Iterate over list of given type, continuing after current point,
533 * safe against removal of list entry.
546 * @member: the name of the list_head within the struct.
548 * Iterate over list of given type from current point, safe against
549 * removal of list entry.
561 * @member: the name of the list_head within the struct.
563 * Iterate backwards over list of given type, safe against removal
564 * of list entry.
576 * @member: the name of the list_head within the struct.
582 * completing the current iteration of the loop body.
676 * reference of the first entry if it exists.
702 * hlist_for_each_entry - iterate over list of given type
705 * @member: the name of the hlist_node within the struct.
715 * @member: the name of the hlist_node within the struct.
725 * @member: the name of the hlist_node within the struct.
732 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
736 * @member: the name of the hlist_node within the struct.