Home
last modified time | relevance | path

Searched defs:Router (Results 1 – 25 of 93) sorted by relevance

1234

/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/
Dmod.rs59 pub struct Router<S = (), B = Body> { struct
60 path_router: PathRouter<S, B, false>, argument
61 fallback_router: PathRouter<S, B, true>, argument
66 impl<S, B> Clone for Router<S, B> { argument
77 impl<S, B> Default for Router<S, B> implementation
87 impl<S, B> fmt::Debug for Router<S, B> { implementation
103 impl<S, B> Router<S, B> impl
152 let Router { in nest() localVariable
192 let Router { in merge() localVariable
349 impl<B> Router<(), B> implementation
[all …]
/aosp_15_r20/external/openthread/src/core/border_router/
H A Drouting_manager.hpp931 struct Router : public Clearable<Router> struct in ot::BorderRouter::RoutingManager::RxRaTracker
940 …nstexpr uint32_t kReachableInterval = OPENTHREAD_CONFIG_BORDER_ROUTING_ROUTER_ACTIVE_CHECK_TIMEOUT;
941 static constexpr uint32_t kPeerBrReachableInterval = Time::kOneSecondInMsec * 200;
943 … static constexpr uint8_t kMaxNsProbes = 5; // Max number of NS probe attempts.
944 …static constexpr uint32_t kNsProbeRetryInterval = 1000; // In msec. Time between NS probe attempts.
945 …tic constexpr uint32_t kNsProbeTimeout = 2000; // In msec. Max Wait time after last NS probe.
946 …atic constexpr uint32_t kJitter = 2000; // In msec. Jitter to randomize probe starts.
950 typedef LifetimedPrefix::ExpirationChecker EmptyChecker;
952 bool IsReachable(void) const { return mNsProbeCount <= kMaxNsProbes; } in IsReachable()
956 bool Matches(const Ip6::Address &aAddress) const { return aAddress == mAddress; } in Matches()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/matchit/src/
Drouter.rs9 pub struct Router<T> { struct
13 impl<T> Default for Router<T> { argument
21 impl<T> Router<T> { impl
/aosp_15_r20/tools/netsim/rust/daemon/src/http_server/
H A Dhttp_router.rs33 pub struct Router { struct
37 impl Router { argument
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/server/
Dmod.rs127 pub struct Router<L = Identity> { struct
128 server: Server<L>,
129 routes: Routes,
562 impl<L> Router<L> { implementation
568 impl<L> Router<L> { implementation
605 pub fn into_router(self) -> axum::Router { in into_router()
/aosp_15_r20/external/pigweed/pw_hdlc/
H A Drouter_test.cc180 TEST(Router, SendsAndReceivesSingleDatagram) { in TEST() argument
184 TEST(Router, SendsAndReceivesMultipleDatagrams) { in TEST() argument
191 TEST(Router, SendsAndReceivesReservedBytes) { in TEST() argument
204 TEST(Router, PendOnClosedIoChannelReturnsReady) { in TEST() argument
H A Drouter.rst4 Router title
/aosp_15_r20/external/rust/android-crates-io/crates/matchit/examples/
Dhyper.rs34 type Router = HashMap<Method, matchit::Router<Service>>; typedef
36 async fn route(router: Arc<Router>, req: Request<Body>) -> hyper::Result<Response<Body>> { in route()
/aosp_15_r20/external/libchrome/mojo/public/js/lib/
H A Drouter.js41 function Router(handle, setInterfaceIdNamespaceBit) { class
70 Router.prototype.associateInterface = function(handleToSend) { class
/aosp_15_r20/external/grpc-grpc/src/proto/grpc/testing/xds/v3/
H A Drouter.proto27 message Router { message
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/proto/grpc/testing/xds/v3/
Drouter.proto27 message Router { message
/aosp_15_r20/external/grpc-grpc-java/xds/third_party/envoy/src/main/proto/envoy/config/filter/http/router/v2/
H A Drouter.proto25 message Router { message
/aosp_15_r20/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DRouter.java14 public interface Router extends MessageReceiverWithResponder, HandleOwner<MessagePipeHandle> { interface
/aosp_15_r20/external/nist-sip/java/javax/sip/address/
H A DRouter.java7 public interface Router { interface
/aosp_15_r20/external/grpc-grpc-java/xds/third_party/envoy/src/main/proto/envoy/extensions/filters/http/router/v3/
H A Drouter.proto26 message Router { message
/aosp_15_r20/device/generic/goldfish/dhcp/client/
Drouter.cpp27 Router::Router() : mSocketFd(-1) { in Router() function in Router
/aosp_15_r20/external/autotest/frontend/
H A Ddb_router.py35 class Router(object): class
/aosp_15_r20/external/openthread/src/core/thread/
H A Drouter.hpp49 class Router : public Neighbor class
/aosp_15_r20/external/pigweed/pw_hdlc/public/pw_hdlc/
H A Drouter.h56 Router(pw::channel::ByteReaderWriter& io_channel, ByteSpan decode_buffer) in Router() function
/aosp_15_r20/external/perfetto/ui/src/core/
H A Drouter.ts77 export class Router { class
/aosp_15_r20/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
H A DRouter.java30 public final class Router extends com.google.protobuf.GeneratedMessageV3 class
36 private Router(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Router() method in Router
40 private Router() { in Router() method in Router
/aosp_15_r20/external/rust/android-crates-io/crates/axum/benches/
Dbenches.rs138 F: FnOnce() -> Router<()>, in run()
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/service/
Drouter.rs95 pub fn into_router(self) -> axum::Router { in into_router()
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/tests/
Dmerge.rs62 async fn test(name: &str, app: Router) { in multiple_ors_balanced_differently()
/aosp_15_r20/external/googleapis/google/cloud/edgenetwork/v1/
H A Dresources.proto270 message Router { message

1234