Home
last modified time | relevance | path

Searched refs:route (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/third_party/libnl/
DBUILD.gn17 "lib/route/cls",
18 "lib/route",
67 "lib/route/act.c",
68 "lib/route/addr.c",
69 "lib/route/class.c",
70 "lib/route/classid.c",
71 "lib/route/cls.c",
72 "lib/route/link.c",
73 "lib/route/neigh.c",
74 "lib/route/neightbl.c",
[all …]
DMakefile.am29 libnl-route-3.0.pc \
101 libnlinclude_netlink_routedir = $(libnlincludedir)/netlink/route
103 include/netlink/route/action.h \
104 include/netlink/route/addr.h \
105 include/netlink/route/class.h \
106 include/netlink/route/classifier.h \
107 include/netlink/route/link.h \
108 include/netlink/route/neighbour.h \
109 include/netlink/route/neightbl.h \
110 include/netlink/route/netconf.h \
[all …]
/third_party/libnl/lib/route/
Droute_obj.c292 struct rtnl_route *route = (struct rtnl_route *) obj; in route_dump_stats() local
296 if (route->ce_mask & ROUTE_ATTR_CACHEINFO) { in route_dump_stats()
297 struct rtnl_rtcacheinfo *ci = &route->rt_cacheinfo; in route_dump_stats()
310 struct rtnl_route *route = (struct rtnl_route *) obj; in route_keygen() local
324 if (route->rt_dst) in route_keygen()
325 addr = route->rt_dst; in route_keygen()
336 rkey->rt_family = route->rt_family; in route_keygen()
337 rkey->rt_tos = route->rt_tos; in route_keygen()
338 rkey->rt_table = route->rt_table; in route_keygen()
339 rkey->rt_prio = route->rt_prio; in route_keygen()
[all …]
/third_party/libnl/src/lib/
Droute.c25 struct rtnl_route *route; in nl_cli_route_alloc() local
27 route = rtnl_route_alloc(); in nl_cli_route_alloc()
28 if (!route) in nl_cli_route_alloc()
31 return route; in nl_cli_route_alloc()
48 void nl_cli_route_parse_family(struct rtnl_route *route, char *arg) in nl_cli_route_parse_family() argument
53 rtnl_route_set_family(route, family); in nl_cli_route_parse_family()
56 void nl_cli_route_parse_dst(struct rtnl_route *route, char *arg) in nl_cli_route_parse_dst() argument
61 addr = nl_cli_addr_parse(arg, rtnl_route_get_family(route)); in nl_cli_route_parse_dst()
62 if ((err = rtnl_route_set_dst(route, addr)) < 0) in nl_cli_route_parse_dst()
69 void nl_cli_route_parse_src(struct rtnl_route *route, char *arg) in nl_cli_route_parse_src() argument
[all …]
/third_party/ltp/testcases/network/stress/route/
D00_Descriptions.txt1 route{4,6}-change-dst
2 Change IPv4/IPv6 route destination by ip command
4 route{4,6}-change-gw
5 Change IPv4/IPv6 route gateway by ip command
7 route{4,6}-change-if
8 Change IPv4/IPv6 route interface by ip command
10 route{4,6}-change-netlink-dst
11 Change IPv4/IPv6 route destination by Netlink API via libmnl
13 route{4,6}-change-netlink-gw
14 Change IPv4/IPv6 route gateway by Netlink API via libmnl
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dpointer_router.dart20 /// Adds a route to the routing table.
23 /// pointer, call route.
25 /// Routes added reentrantly within [PointerRouter.route] will take effect when
27 void addRoute(int pointer, PointerRoute route, [Matrix4 transform]) {
29 assert(!routes.any(_RouteEntry.isRoutePredicate(route)));
30 routes.add(_RouteEntry(route: route, transform: transform));
33 /// Removes a route from the routing table.
35 /// No longer call route when routing a [PointerEvent] corresponding to
36 /// pointer. Requires that this route was previously added to the router.
38 /// Routes removed reentrantly within [PointerRouter.route] will take effect
[all …]
/third_party/libnl/src/
Dnl-route-add.c58 struct rtnl_route *route; in main() local
69 route = nl_cli_route_alloc(); in main()
111 case 'd': nl_cli_route_parse_dst(route, optarg); break; in main()
112 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break; in main()
113 case 't': nl_cli_route_parse_table(route, optarg); break; in main()
114 case ARG_FAMILY: nl_cli_route_parse_family(route, optarg); break; in main()
115 case ARG_SRC: nl_cli_route_parse_src(route, optarg); break; in main()
116 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break; in main()
117 case ARG_PREF_SRC: nl_cli_route_parse_pref_src(route, optarg); break; in main()
118 case ARG_METRICS: nl_cli_route_parse_metric(route, optarg); break; in main()
[all …]
Dnl-route-list.c57 struct rtnl_route *route; in main() local
67 route = nl_cli_route_alloc(); in main()
111 case 'd': nl_cli_route_parse_dst(route, optarg); break; in main()
112 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break; in main()
113 case 't': nl_cli_route_parse_table(route, optarg); break; in main()
114 case ARG_FAMILY: nl_cli_route_parse_family(route, optarg); break; in main()
115 case ARG_SRC: nl_cli_route_parse_src(route, optarg); break; in main()
116 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break; in main()
117 case ARG_PREF_SRC: nl_cli_route_parse_pref_src(route, optarg); break; in main()
118 case ARG_METRICS: nl_cli_route_parse_metric(route, optarg); break; in main()
[all …]
Dnl-route-delete.c66 struct rtnl_route *route = (struct rtnl_route *) obj; in delete_cb() local
76 if ((err = rtnl_route_delete(sock, route, 0)) < 0) in delete_cb()
90 struct rtnl_route *route; in main() local
97 route = nl_cli_route_alloc(); in main()
144 case 'd': nf++; nl_cli_route_parse_dst(route, optarg); break; in main()
145 case 'n': nf++; nl_cli_route_parse_nexthop(route, optarg, link_cache); break; in main()
146 case 't': nf++; nl_cli_route_parse_table(route, optarg); break; in main()
147 case ARG_FAMILY: nf++; nl_cli_route_parse_family(route, optarg); break; in main()
148 case ARG_SRC: nf++; nl_cli_route_parse_src(route, optarg); break; in main()
149 case ARG_IIF: nf++; nl_cli_route_parse_iif(route, optarg, link_cache); break; in main()
[all …]
/third_party/ltp/runtest/
Dnet_stress.interface13 if4-route-adddel_ip if-route-adddel.sh -c ip
14 if4-route-adddel_route if-route-adddel.sh -c route
15 if4-route-addlarge_ip if-route-addlarge.sh -c ip
16 if4-route-addlarge_route if-route-addlarge.sh -c route
26 if6-route-adddel_ip if-route-adddel.sh -6 -c ip
27 if6-route-adddel_route if-route-adddel.sh -6 -c route
28 if6-route-addlarge_ip if-route-addlarge.sh -6 -c ip
29 if6-route-addlarge_route if-route-addlarge.sh -6 -c route
Dnet_stress.route2 route4-change-dst route-change-dst.sh
3 route4-change-gw route-change-gw.sh
4 route4-change-if route-change-if.sh
5 route4-change-netlink-dst route-change-netlink-dst.sh
6 route4-change-netlink-gw route-change-netlink-gw.sh
7 route4-change-netlink-if route-change-netlink-if.sh
11 route6-change-dst route-change-dst.sh -6
12 route6-change-gw route-change-gw.sh -6
13 route6-change-if route-change-if.sh -6
14 route6-change-netlink-dst route-change-netlink-dst.sh -6
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dnavigator.dart30 /// Creates a route for the given route settings.
36 typedef RoutePredicate = bool Function(Route<dynamic> route);
44 /// Indicates whether the current route should be popped.
50 /// * [WillPopScope], a widget that hooks into the route's [Route.willPop]
53 /// Pop the route.
56 /// the current route.
59 /// Do not pop the route.
72 /// engine after a route is popped.
76 /// engine after a route is pushed.
80 /// engine after a route is replaced.
[all …]
Droutes.dart24 /// A route that displays widgets in the [Navigator]'s [Overlay].
26 /// Creates a route that knows how to interact with an [Overlay].
34 /// The entries this route has placed in the overlay.
49 /// If true, this route removes its overlay entries during [didPop].
51 /// (for example to animate the route's exit before removing it from the
77 /// A route with entrance and exit transitions.
79 /// Creates a route that animates itself when it is pushed or popped.
89 /// even starts, as soon as the route is popped.
96 /// Whether the route obscures previous routes when the transition is complete.
98 /// When an opaque route's entrance transition is complete, the routes behind
[all …]
/third_party/flutter/flutter/packages/flutter/test/gestures/
Ddouble_tap_test.dart112 tester.route(down1);
115 tester.route(up1);
124 tester.route(down2);
127 tester.route(up2);
146 tester.route(down1);
149 tester.route(up1);
157 tester.route(down3);
160 tester.route(up3);
179 tester.route(down4);
182 tester.route(move4);
[all …]
Ddrag_test.dart48 tester.route(down);
56 …tester.route(pointer.move(const Offset(20.0, 20.0))); // moved 10 horizontally and 10 vertically w…
58 …tester.route(pointer.move(const Offset(20.0, 30.0))); // moved 10 horizontally and 20 vertically w…
64 tester.route(pointer.move(const Offset(20.0, 25.0)));
71 tester.route(pointer.up());
97 tester.route(down);
99 tester.route(pointer.move(const Offset(30.0, 0.0)));
125 tester.route(down);
127 tester.route(pointer.move(const Offset(30.0, 0.0)));
161 tester.route(down);
[all …]
Dlong_press_test.dart73 tester.route(down);
87 tester.route(down);
91 tester.route(up);
103 tester.route(down);
107 tester.route(move);
110 tester.route(up);
122 tester.route(down);
126 tester.route(move);
127 tester.route(up);
148 tester.route(down);
[all …]
Dscale_test.dart60 tester.route(down);
67 tester.route(pointer1.move(const Offset(20.0, 30.0)));
83 tester.route(down2);
92 tester.route(pointer2.move(const Offset(0.0, 10.0)));
107 tester.route(pointer2.move(const Offset(15.0, 25.0)));
115 tester.route(pointer2.move(const Offset(0.0, 20.0)));
120 tester.route(pointer2.move(const Offset(10.0, 10.0)));
123 tester.route(pointer2.move(const Offset(15.0, 25.0)));
133 tester.route(down3);
142 tester.route(pointer3.move(const Offset(55.0, 65.0)));
[all …]
Dtap_test.dart99 tester.route(down1);
102 tester.route(up1);
121 tester.route(down1);
124 tester.route(up1);
132 tester.route(down1);
135 tester.route(up1);
154 tester.route(down1);
160 tester.route(down1);
164 tester.route(up1);
169 tester.route(up2);
[all …]
Dmultitap_test.dart34 tester.route(down5);
43 tester.route(down6);
46 tester.route(pointer5.move(const Offset(11.0, 12.0)));
49 tester.route(pointer6.move(const Offset(14.0, 13.0)));
52 tester.route(pointer5.up());
63 … tester.route(pointer6.move(const Offset(40.0, 30.0))); // move more than kTouchSlop from 15.0,15.0
67 tester.route(pointer6.up());
95 tester.route(down5);
111 tester.route(down7);
114 tester.route(touchPointer5.move(const Offset(11.0, 12.0)));
[all …]
/third_party/ltp/testcases/network/mpls/
Dmpls01.sh19 ip -f mpls route flush dev lo > /dev/null 2>&1
20 ip -f mpls route flush dev $(tst_iface) > /dev/null 2>&1
31 ROD ip -f mpls route add 0xffffe dev lo
32 ROD ip -f mpls route show \> /dev/null
33 ROD ip -f mpls route del 0xffffe dev lo
40 ip -f mpls route add 0xffffe dev lo > /dev/null 2>&1
57 ROD ip -f mpls route add $l dev $(tst_iface)
61 ROD ip -f mpls route show \> /dev/null
65 ROD ip -f mpls route del $l dev $(tst_iface)
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dobserver_tester.dart7 typedef OnObservation = void Function(Route<dynamic> route, Route<dynamic> previousRoute);
18 void didPush(Route<dynamic> route, Route<dynamic> previousRoute) {
20 onPushed(route, previousRoute);
25 void didPop(Route<dynamic> route, Route<dynamic> previousRoute) {
27 onPopped(route, previousRoute);
32 void didRemove(Route<dynamic> route, Route<dynamic> previousRoute) {
34 onRemoved(route, previousRoute);
44 void didStartUserGesture(Route<dynamic> route, Route<dynamic> previousRoute) {
46 onStartUserGesture(route, previousRoute);
/third_party/cef/libcef/browser/media_router/
Dmedia_router_manager.cc45 const media_router::MediaRoute& route) in CefRouteMessageObserver() argument
47 route.media_route_id()), in CefRouteMessageObserver()
49 route_(route) {} in CefRouteMessageObserver()
68 const media_router::MediaRoute& route, in CefPresentationConnection() argument
71 route_(route), in CefPresentationConnection()
224 if (result.route()) { in OnCreateRoute()
225 CreateRouteState(*result.route(), std::move(connection)); in OnCreateRoute()
232 const media_router::MediaRoute& route, in OnRouteStateChange() argument
237 RemoveRouteState(route.media_route_id()); in OnRouteStateChange()
241 observer.OnMediaRouteStateChange(route, info); in OnRouteStateChange()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dtab_view.dart8 import 'route.dart';
19 /// 1. For the `/` route, the [builder] property, if non-null, is used.
21 /// 2. Otherwise, the [routes] table is used, if it has an entry for the route,
25 /// non-null value for any _valid_ route not handled by [builder] and [routes].
32 /// To push a route above this [CupertinoTabView] instead of inside it (such
39 /// * [CupertinoPageRoute], a typical modal page route pushed onto the
55 /// The widget builder for the default route of the tab view
84 /// The title of the default route.
89 /// When a named route is pushed with [Navigator.pushNamed] inside this tab view,
90 /// the route name is looked up in this map. If the name is present,
[all …]
/third_party/cef/libcef_dll/cpptoc/
Dmedia_observer_cpptoc.cc84 struct _cef_media_route_t* route, in media_observer_on_route_state_changed() argument
94 DCHECK(route); in media_observer_on_route_state_changed()
95 if (!route) in media_observer_on_route_state_changed()
100 CefMediaRouteCToCpp::Wrap(route), state); in media_observer_on_route_state_changed()
105 struct _cef_media_route_t* route, in media_observer_on_route_message_received() argument
116 DCHECK(route); in media_observer_on_route_message_received()
117 if (!route) in media_observer_on_route_message_received()
126 CefMediaRouteCToCpp::Wrap(route), message, message_size); in media_observer_on_route_message_received()
/third_party/cef/libcef_dll/ctocpp/
Dmedia_observer_ctocpp.cc87 void CefMediaObserverCToCpp::OnRouteStateChanged(CefRefPtr<CefMediaRoute> route, in OnRouteStateChanged() argument
98 DCHECK(route.get()); in OnRouteStateChanged()
99 if (!route.get()) in OnRouteStateChanged()
103 _struct->on_route_state_changed(_struct, CefMediaRouteCppToC::Wrap(route), in OnRouteStateChanged()
109 CefRefPtr<CefMediaRoute> route, in OnRouteMessageReceived() argument
121 DCHECK(route.get()); in OnRouteMessageReceived()
122 if (!route.get()) in OnRouteMessageReceived()
130 _struct->on_route_message_received(_struct, CefMediaRouteCppToC::Wrap(route), in OnRouteMessageReceived()

12345678910>>...16