/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/ |
D | mod.rs | 59 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 D | routing_manager.hpp | 931 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/ |
D | router.rs | 9 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 D | http_router.rs | 33 pub struct Router { struct 37 impl Router { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/server/ |
D | mod.rs | 127 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 D | router_test.cc | 180 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 D | router.rst | 4 Router title
|
/aosp_15_r20/external/rust/android-crates-io/crates/matchit/examples/ |
D | hyper.rs | 34 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 D | router.js | 41 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 D | router.proto | 27 message Router { message
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/proto/grpc/testing/xds/v3/ |
D | router.proto | 27 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 D | router.proto | 25 message Router { message
|
/aosp_15_r20/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
H A D | Router.java | 14 public interface Router extends MessageReceiverWithResponder, HandleOwner<MessagePipeHandle> { interface
|
/aosp_15_r20/external/nist-sip/java/javax/sip/address/ |
H A D | Router.java | 7 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 D | router.proto | 26 message Router { message
|
/aosp_15_r20/device/generic/goldfish/dhcp/client/ |
D | router.cpp | 27 Router::Router() : mSocketFd(-1) { in Router() function in Router
|
/aosp_15_r20/external/autotest/frontend/ |
H A D | db_router.py | 35 class Router(object): class
|
/aosp_15_r20/external/openthread/src/core/thread/ |
H A D | router.hpp | 49 class Router : public Neighbor class
|
/aosp_15_r20/external/pigweed/pw_hdlc/public/pw_hdlc/ |
H A D | router.h | 56 Router(pw::channel::ByteReaderWriter& io_channel, ByteSpan decode_buffer) in Router() function
|
/aosp_15_r20/external/perfetto/ui/src/core/ |
H A D | router.ts | 77 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 D | Router.java | 30 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/ |
D | benches.rs | 138 F: FnOnce() -> Router<()>, in run()
|
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/service/ |
D | router.rs | 95 pub fn into_router(self) -> axum::Router { in into_router()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/routing/tests/ |
D | merge.rs | 62 async fn test(name: &str, app: Router) { in multiple_ors_balanced_differently()
|
/aosp_15_r20/external/googleapis/google/cloud/edgenetwork/v1/ |
H A D | resources.proto | 270 message Router { message
|