Lines Matching refs:dev_base_head
2920 list_for_each_entry(d, &(net)->dev_base_head, dev_list)
2922 list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list)
2924 list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list)
2926 list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list)
2928 list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list)
2930 list_for_each_entry_continue_reverse(d, &(net)->dev_base_head, \
2933 list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list)
2946 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device()
2956 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device_rcu()
2961 return list_empty(&net->dev_base_head) ? NULL : in first_net_device()
2962 net_device_entry(net->dev_base_head.next); in first_net_device()
2967 struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head)); in first_net_device_rcu()
2969 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in first_net_device_rcu()