Lines Matching refs:dev_base_head
3255 list_for_each_entry(d, &(net)->dev_base_head, dev_list)
3257 list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list)
3259 list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list)
3261 list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list)
3263 list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list)
3265 list_for_each_entry_continue_reverse(d, &(net)->dev_base_head, \
3268 list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list)
3285 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device()
3295 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device_rcu()
3300 return list_empty(&net->dev_base_head) ? NULL : in first_net_device()
3301 net_device_entry(net->dev_base_head.next); in first_net_device()
3306 struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head)); in first_net_device_rcu()
3308 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in first_net_device_rcu()