Home
last modified time | relevance | path

Searched full:router (Results 1 – 25 of 2627) sorted by relevance

12345678910>>...106

/aosp_15_r20/external/tcpdump/tests/
H A Dospf3_nbma-vv.out2 Router-ID 3.3.3.3, Backbone Area
3 Options [V6, External, Router]
5 Designated Router 3.3.3.3
8 Router-ID 3.3.3.3, Backbone Area
9 Options [V6, External, Router]
11 Designated Router 3.3.3.3
14 Router-ID 1.1.1.1, Backbone Area
15 Options [V6, External, Router]
17 Designated Router 1.1.1.1
21 Router-ID 3.3.3.3, Backbone Area
[all …]
H A Dospf3_mp-vv.out2 Router-ID 3.3.3.3, Backbone Area
3 Options [V6, External, Router]
7 Router-ID 3.3.3.3, Backbone Area
8 Options [V6, External, Router]
12 Router-ID 3.3.3.3, Backbone Area
13 Options [V6, External, Router]
17 Router-ID 3.3.3.3, Backbone Area
18 Options [V6, External, Router]
22 Router-ID 1.1.1.1, Backbone Area
23 Options [V6, External, Router]
[all …]
H A Dospf3_ah-vv.out2 Router-ID 1.1.1.1, Area 0.0.0.1
3 Options [V6, External, Router]
7 Router-ID 2.2.2.2, Area 0.0.0.1
8 Options [V6, External, Router]
12 Router-ID 1.1.1.1, Area 0.0.0.1
13 Options [V6, External, Router]
18 Router-ID 2.2.2.2, Area 0.0.0.1
19 Options [V6, External, Router]
24 Router-ID 1.1.1.1, Area 0.0.0.1
25 Options [V6, External, Router]
[all …]
H A Dospf3_bc-vv.out2 Router-ID 1.1.1.1, Area 0.0.0.1
3 Options [V6, External, Router]
7 Router-ID 1.1.1.1, Area 0.0.0.1
8 Options [V6, External, Router]
12 Router-ID 1.1.1.1, Area 0.0.0.1
13 Options [V6, External, Router]
17 Router-ID 1.1.1.1, Area 0.0.0.1
18 Options [V6, External, Router]
22 Router-ID 2.2.2.2, Area 0.0.0.1
23 Options [V6, External, Router]
[all …]
/aosp_15_r20/external/openthread/src/core/thread/
H A Drouter_table.hpp47 #include "thread/router.hpp"
66 * Clears the router table.
78 * Allocates a router with a random Router ID.
80 * @returns A pointer to the allocated router or `nullptr` if a Router ID is not available.
83 Router *Allocate(void);
86 * Allocates a router with a specified Router ID.
88 * @param[in] aRouterId The Router ID to try to allocate.
90 …* @returns A pointer to the allocated router or `nullptr` if the ID @p aRouterId could not be allo…
93 Router *Allocate(uint8_t aRouterId);
96 * Releases a Router ID.
[all …]
H A Drouter_table.cpp77 for (Router &router : mRouters) in ClearNeighbors()
79 if (router.IsStateValid()) in ClearNeighbors()
81 Get<NeighborTable>().Signal(NeighborTable::kRouterRemoved, router); in ClearNeighbors()
85 router.SetState(Neighbor::kStateInvalid); in ClearNeighbors()
89 Router *RouterTable::AddRouter(uint8_t aRouterId) in AddRouter()
91 // Add a new `Router` entry to `mRouters` array with given in AddRouter()
94 Router *router = mRouters.PushBack(); in AddRouter() local
96 VerifyOrExit(router != nullptr); in AddRouter()
98 router->Clear(); in AddRouter()
99 router->SetRloc16(Mle::Rloc16FromRouterId(aRouterId)); in AddRouter()
[all …]
H A Dmle_router.cpp30 * This file implements MLE functionality required for the Thread Router and Leader roles.
200 // If we are currently router or leader and no longer eligible to in HandleSecurityPolicyChanged()
201 // be a router (due to security policy change), we start jitter in HandleSecurityPolicyChanged()
236 LogInfo("Attempt to become router"); in BecomeRouter()
244 // If router had more than `kMinCriticalChildrenCount` children in BecomeRouter()
273 Router *router; in BecomeLeader() local
312 router = mRouterTable.Allocate(leaderId); in BecomeLeader()
313 OT_ASSERT(router != nullptr); in BecomeLeader()
316 router->SetExtAddress(Get<Mac::Mac>().GetExtAddress()); in BecomeLeader()
394 // decision to become router is determined based on the new in HandleChildStart()
[all …]
H A Dmle_router.hpp31 …* This file includes definitions for MLE functionality required by the Thread Router and Leader …
54 #include "thread/router.hpp"
63 * @addtogroup core-mle-router
66 …* This module includes definitions for MLE functionality required by the Thread Router and Leade…
74 * Implements MLE functionality required by the Thread Router and Leader roles.
94 * Indicates whether or not the device is router-eligible.
96 * @retval true If device is router-eligible.
97 * @retval false If device is not router-eligible.
103 * Sets whether or not the device is router-eligible.
105 …* If @p aEligible is false and the device is currently operating as a router, this call will cause…
[all …]
H A Drouter.hpp31 * This file includes definitions Thread `Router` and `Parent`.
46 * Represents a Thread Router
49 class Router : public Neighbor class
53 * Represents diagnostic information for a Thread Router.
60 * Sets the `Info` instance from a given `Router`.
62 * @param[in] aRouter A router.
65 void SetFrom(const Router &aRouter);
77 * Initializes the `Router` object.
85 * Clears the router entry.
91 * Sets the `Router` entry from a `Parent`
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/docs/routing/
Dwith_state.md1 Provide the state for the router.
4 use axum::{Router, routing::get, extract::State};
9 let routes = Router::new()
24 When returning `Router`s from functions it is generally recommend not set the
28 use axum::{Router, routing::get, extract::State};
33 // Don't call `Router::with_state` here
34 fn routes() -> Router<AppState> {
35 Router::new()
49 If you do need to provide the state, and you're _not_ nesting/merging the router
50 into another router, then return `Router` without any type parameters:
[all …]
Dnest.md1 Nest a [`Router`] at some path.
11 Router,
14 let user_routes = Router::new().route("/:id", get(|| async {}));
16 let team_routes = Router::new().route("/", post(|| async {}));
18 let api_routes = Router::new()
22 let app = Router::new().nest("/api", api_routes);
48 Router,
59 let users_api = Router::new().route("/users/:id", get(users_get));
61 let app = Router::new().nest("/:version/api", users_api);
74 use axum::{routing::get, http::Uri, Router};
[all …]
/aosp_15_r20/external/openthread/tests/scripts/thread-cert/border_router/
H A Dtest_single_border_router.py45 # ROUTER
49 ROUTER = 2 variable
64 'allowlist': [ROUTER],
68 ROUTER: {
69 'name': 'Router',
81 router = self.nodes[ROUTER]
91 router.start()
93 self.assertEqual('router', router.get_state())
103 logging.info("ROUTER addrs: %r", router.get_addrs())
107 self.assertEqual(len(router.get_netdata_omr_prefixes()), 1)
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/
H A DRoutersClient.java55 * String router = "router-925132983";
56 * Router response = routersClient.get(project, region, router);
312 * Deletes the specified Router resource.
325 * String router = "router-925132983";
326 * Operation response = routersClient.deleteAsync(project, region, router).get();
332 * @param router Name of the Router resource to delete.
336 String project, String region, String router) { in deleteAsync() argument
341 .setRouter(router) in deleteAsync()
348 * Deletes the specified Router resource.
364 * .setRouter("router-925132983")
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/google-cloud-compute/src/test/java/com/google/cloud/compute/v1/
H A DRoutersClientTest.java169 String router = "router-8641"; in deleteTest() local
171 Operation actualResponse = client.deleteAsync(project, region, router).get(); in deleteTest()
199 String router = "router-8641"; in deleteExceptionTest() local
200 client.deleteAsync(project, region, router).get(); in deleteExceptionTest()
208 Router expectedResponse = in getTest()
209 Router.newBuilder() in getTest()
229 String router = "router-8641"; in getTest() local
231 Router actualResponse = client.get(project, region, router); in getTest()
259 String router = "router-8641"; in getExceptionTest() local
260 client.get(project, region, router); in getExceptionTest()
[all …]
/aosp_15_r20/external/grpc-grpc/test/core/xds/
H A Dxds_listener_resource_type_test.cc63 #include "src/proto/grpc/testing/xds/v3/router.pb.h"
72 using envoy::extensions::filters::http::router::v3::Router;
268 filter->set_name("router"); in TEST_P()
269 filter->mutable_typed_config()->PackFrom(Router()); in TEST_P()
291 auto& router = http_connection_manager->http_filters[0]; in TEST_P() local
292 EXPECT_EQ(router.name, "router"); in TEST_P()
293 EXPECT_EQ(router.config.config_proto_type_name, in TEST_P()
294 "envoy.extensions.filters.http.router.v3.Router"); in TEST_P()
295 EXPECT_EQ(router.config.config, Json()) << JsonDump(router.config.config); in TEST_P()
303 filter->set_name("router"); in TEST_P()
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dcompute_alpha.routers.html87 …<code><a href="#delete">delete(project, region, router, requestId=None, x__xgafv=None)</a></code><…
88 <p class="firstline">Deletes the specified Router resource.</p>
90 <code><a href="#get">get(project, region, router, x__xgafv=None)</a></code></p>
91 <p class="firstline">Returns the specified Router resource. Gets a list of available routers by mak…
93 …<code><a href="#getNatMappingInfo">getNatMappingInfo(project, region, router, filter=None, maxResu…
99 …<code><a href="#getRouterStatus">getRouterStatus(project, region, router, x__xgafv=None)</a></code…
100 <p class="firstline">Retrieves runtime information of the specified router.</p>
103 <p class="firstline">Creates a Router resource in the specified project and region using the data i…
106 <p class="firstline">Retrieves a list of Router resources available to the specified project.</p>
111 …<code><a href="#patch">patch(project, region, router, body=None, requestId=None, x__xgafv=None)</a…
[all …]
Dcompute_beta.routers.html87 …<code><a href="#delete">delete(project, region, router, requestId=None, x__xgafv=None)</a></code><…
88 <p class="firstline">Deletes the specified Router resource.</p>
90 <code><a href="#get">get(project, region, router, x__xgafv=None)</a></code></p>
91 <p class="firstline">Returns the specified Router resource. Gets a list of available routers by mak…
93 …<code><a href="#getNatMappingInfo">getNatMappingInfo(project, region, router, filter=None, maxResu…
99 …<code><a href="#getRouterStatus">getRouterStatus(project, region, router, x__xgafv=None)</a></code…
100 <p class="firstline">Retrieves runtime information of the specified router.</p>
103 <p class="firstline">Creates a Router resource in the specified project and region using the data i…
106 <p class="firstline">Retrieves a list of Router resources available to the specified project.</p>
111 …<code><a href="#patch">patch(project, region, router, body=None, requestId=None, x__xgafv=None)</a…
[all …]
Dcompute_v1.routers.html87 …<code><a href="#delete">delete(project, region, router, requestId=None, x__xgafv=None)</a></code><…
88 <p class="firstline">Deletes the specified Router resource.</p>
90 <code><a href="#get">get(project, region, router, x__xgafv=None)</a></code></p>
91 <p class="firstline">Returns the specified Router resource. Gets a list of available routers by mak…
93 …<code><a href="#getNatMappingInfo">getNatMappingInfo(project, region, router, filter=None, maxResu…
99 …<code><a href="#getRouterStatus">getRouterStatus(project, region, router, x__xgafv=None)</a></code…
100 <p class="firstline">Retrieves runtime information of the specified router.</p>
103 <p class="firstline">Creates a Router resource in the specified project and region using the data i…
106 <p class="firstline">Retrieves a list of Router resources available to the specified project.</p>
111 …<code><a href="#patch">patch(project, region, router, body=None, requestId=None, x__xgafv=None)</a…
[all …]
Dlogging_v2.v2.html82Router can be configured for Google Cloud projects, folders, organizations and billing accounts. O…
85Router CMEK settings for the given resource.Note: CMEK for the Log Router can currently only be co…
94Router can be configured for Google Cloud projects, folders, organizations and billing accounts. O…
97 …ample:&quot;organizations/12345/cmekSettings&quot;Note: CMEK for the Log Router can be configured …
106Router can currently only be configured for Google Cloud organizations. Once configured, it applie…
107Router, set this field to a valid kms_key_name for which the associated service account has the re…
109Router to access your Cloud KMS key.Before enabling CMEK for Log Router, you must first assign the…
115Router CMEK settings for the given resource.Note: CMEK for the Log Router can currently only be co…
118 …ample:&quot;organizations/12345/cmekSettings&quot;Note: CMEK for the Log Router can currently only…
122Router can currently only be configured for Google Cloud organizations. Once configured, it applie…
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/tests/
Dmerge.rs8 let one = Router::new() in basic()
11 let two = Router::new().route("/baz", get(|| async {})); in basic()
31 let one = Router::new().route("/one", get(|| async { "one" })); in multiple_ors_balanced_differently()
32 let two = Router::new().route("/two", get(|| async { "two" })); in multiple_ors_balanced_differently()
33 let three = Router::new().route("/three", get(|| async { "three" })); in multiple_ors_balanced_differently()
34 let four = Router::new().route("/four", get(|| async { "four" })); in multiple_ors_balanced_differently()
62 async fn test(name: &str, app: Router) { in multiple_ors_balanced_differently() argument
76 let bar = Router::new().route("/bar", get(|| async { "bar" })); in nested_or()
77 let baz = Router::new().route("/baz", get(|| async { "baz" })); in nested_or()
85 let client = TestClient::new(Router::new().nest("/foo", bar_or_baz)); in nested_or()
[all …]
Dnest.rs8 let api_routes = Router::new() in nesting_apps()
38 let app = Router::new() in nesting_apps()
63 let nested_app = Router::new().route("/", get(|| async {})); in wrong_method_nest()
64 let app = Router::new().nest("/", nested_app); in wrong_method_nest()
81 let nested = Router::new().route("/foo", get(|uri: Uri| async move { uri.to_string() })); in nesting_router_at_root()
82 let app = Router::new().nest("/", nested); in nesting_router_at_root()
99 let nested = Router::new().route("/foo", get(|uri: Uri| async move { uri.to_string() })); in nesting_router_at_empty_path()
100 let app = Router::new().nest("", nested); in nesting_router_at_empty_path()
117 let app = Router::new().nest_service("/", get(|uri: Uri| async move { uri.to_string() })); in nesting_handler_at_root()
136 let app = Router::new().nest( in nested_url_extractor()
[all …]
Dfallback.rs8 let app = Router::new() in basic()
23 let app = Router::new() in nest()
24 .nest("/foo", Router::new().route("/bar", get(|| async {}))) in nest()
38 let one = Router::new().route("/one", get(|| async {})); in or()
39 let two = Router::new().route("/two", get(|| async {})); in or()
55 let app = Router::new() in fallback_accessing_state()
76 let inner = Router::new(); in nested_router_inherits_fallback()
77 let app = Router::new().nest("/foo", inner).fallback(outer_fallback); in nested_router_inherits_fallback()
88 let inner = Router::new().fallback(inner_fallback); in doesnt_inherit_fallback_if_overriden()
89 let app = Router::new().nest("/foo", inner).fallback(outer_fallback); in doesnt_inherit_fallback_if_overriden()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum/
DCHANGELOG.md53 - **fixed:** Fix panic if `Router` with something nested at `/` was used as a fallback ([#1934])
54 - **added:** Document that `Router::new().fallback(...)` isn't optimal ([#1940])
75 - **fixed:** Fixed performance regression with `Router::nest` introduced in
95 - **fixed:** Don't require `S: Debug` for `impl Debug for Router<S>` ([#1836])
107 - **fixed:** Fix routing issues when loading a `Router` via a dynamic library ([#1806])
139 - **fixed:** Enable passing `MethodRouter` to `Router::fallback` ([#1730])
179 - **added:** Expand the docs for `Router::with_state` ([#1580])
190 let api_router = Router::new()
194 let app = Router::new()
202 The outer router's fallback will still apply if a nested router doesn't have
[all …]
/aosp_15_r20/system/chre/util/tests/
H A Dmessage_router_test.cc199 MessageRouterWithStorage<kMaxMessageHubs, kMaxSessions> router; in TEST_F() local
204 router.registerMessageHub("hub1", /* id= */ 1, callback); in TEST_F()
207 router.registerMessageHub("hub2", /* id= */ 2, callback); in TEST_F()
211 router.registerMessageHub("hub1", /* id= */ 1, callback); in TEST_F()
216 MessageRouterWithStorage<kMaxMessageHubs, kMaxSessions> router; in TEST_F() local
221 router.registerMessageHub("hub1", /* id= */ 1, callback); in TEST_F()
224 router.registerMessageHub("hub2", /* id= */ 2, callback); in TEST_F()
228 router.registerMessageHub("hub3", /* id= */ 1, callback); in TEST_F()
233 MessageRouterWithStorage<kMaxMessageHubs, kMaxSessions> router; in TEST_F() local
238 router.registerMessageHub("hub1", /* id= */ 1, callback); in TEST_F()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/extract/
Dstate.rs16 /// # With `Router`
19 /// use axum::{Router, routing::get, extract::State};
33 /// // create a `Router` that holds our state
34 /// let app = Router::new()
36 /// // provide the state so the router can access it
46 /// # let _: axum::Router = app;
56 /// Multiple [`Router`]s can be combined with [`Router::nest`] or [`Router::merge`]
57 /// When combining [`Router`]s with one of these methods, the [`Router`]s must have
61 /// use axum::{Router, routing::get, extract::State};
68 /// // create a `Router` that will be nested within another
[all …]

12345678910>>...106