Lines Matching refs:route
404 struct net_route_entry_mcast *route = in test_route_mcast_lookup() local
407 zassert_equal_ptr(test_mcast_routes[0], route, in test_route_mcast_lookup()
410 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_lookup()
412 zassert_equal_ptr(test_mcast_routes[1], route, in test_route_mcast_lookup()
415 route = net_route_mcast_lookup(&mcast_prefix_global); in test_route_mcast_lookup()
417 zassert_equal_ptr(test_mcast_routes[3], route, in test_route_mcast_lookup()
422 struct net_route_entry_mcast *route; in test_route_mcast_route_del() local
427 route = net_route_mcast_lookup(&mcast_prefix_admin); in test_route_mcast_route_del()
428 zassert_is_null(route, "lookup found deleted route"); in test_route_mcast_route_del()
433 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_route_del()
434 zassert_is_null(route, "lookup found deleted route"); in test_route_mcast_route_del()
667 struct net_route_entry_mcast *route; in test_route_mcast_multiple_route_ifaces() local
696 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_multiple_route_ifaces()
697 zassert_not_null(route, "failed to find the route entry"); in test_route_mcast_multiple_route_ifaces()
700 res = net_route_mcast_iface_add(route, iface_1); in test_route_mcast_multiple_route_ifaces()
723 res = net_route_mcast_iface_del(route, iface_1); in test_route_mcast_multiple_route_ifaces()