Home
last modified time | relevance | path

Searched refs:Route (Results 1 – 25 of 57) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/header/
DRouteList.java44 public class RouteList extends SIPHeaderList<Route> {
52 super(Route.class, RouteHeader.NAME); in RouteList()
77 ListIterator<Route> it = this.listIterator(); in equals()
78 ListIterator<Route> it1 = that.listIterator(); in equals()
80 Route route = (Route) it.next(); in equals()
81 Route route1 = (Route) it1.next(); in equals()
DRoute.java44 public class Route class
55 public Route() { in Route() method in Route
65 public Route(AddressImpl address) { in Route() method in Route
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DRouteDatabase.java18 import com.squareup.okhttp.Route;
29 private final Set<Route> failedRoutes = new LinkedHashSet<>();
32 public synchronized void failed(Route failedRoute) { in failed()
37 public synchronized void connected(Route route) { in connected()
42 public synchronized boolean shouldPostpone(Route route) { in shouldPostpone()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/
DRouteDatabase.java19 import com.android.okhttp.Route;
31 private final Set<Route> failedRoutes = new LinkedHashSet<>();
34 public synchronized void failed(Route failedRoute) { in failed()
39 public synchronized void connected(Route route) { in connected()
44 public synchronized boolean shouldPostpone(Route route) { in shouldPostpone()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DRoute.java34 public final class Route { class
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) { in Route() method in Route
82 if (obj instanceof Route) { in equals()
83 Route other = (Route) obj; in equals()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DRoute.java36 public final class Route { class
41 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) { in Route() method in Route
84 if (obj instanceof Route) { in equals()
85 Route other = (Route) obj; in equals()
/external/tcpdump/tests/
Dbgp_mvpn_6_and_7.out9Route-Type: Intra-AS I-PMSI (1), length: 0, RD: 62209:33686018 (= 2.2.2.2), Originator bogus addre…
10 Route-Type: Unknown (0), length: 0
11 Route-Type: Unknown (243), length: 1
12 Route-Type: Inter-AS I-PMSI (2), length: 2, RD: unknown RD format, Source-AS 368115805
13 Route-Type: Inter-AS I-PMSI (2), length: 2, RD: unknown RD format, Source-AS 335544320[|BGP]
Dbgp_vpn_rt-oobr.out9Route-Type: Source-Active (5), length: 5, RD: unknown RD format, Group bogus address length 127
10 Route-Type: Unknown (142), length: 142
11 Route-Type: Unknown (0), length: 0
12 Route-Type: Unknown (33), length: 0
13 Route-Type: Unknown (0), length: 0[|BGP] [|BGP]
20 AFI: IPv4 (1), vendor specific SAFI: Route Target Routing Information (132)
Ddcb_qcn.out8 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
11 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
20 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
23 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
94 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
97 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
186 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
189 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
199 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
202 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
[all …]
Ddcb_ets.out9 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
12 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
76 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
79 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
88 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
91 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
101 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
104 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
177 Subnet-Mask, BR, Time-Zone, Classless-Static-Route
180 Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
[all …]
Drsvp_fast_reroute-oobr.out4 …Fast Re-Route Object (205) Flags: [ignore and forward if unknown], Class-Type: Unknown (0), length…
5 …Fast Re-Route Object (205) Flags: [ignore and forward if unknown], Class-Type: Unknown (0), length…
Ddhcp-mud.out16 Subnet-Mask, Classless-Static-Route, Static-Route, Default-Gateway
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
DRouteSelector.java21 import com.android.okhttp.Route;
57 private final List<Route> postponedRoutes = new ArrayList<>();
77 public Route next() throws IOException { in next()
90 Route route = new Route(address, lastProxy, lastInetSocketAddress); in next()
104 public void connectFailed(Route failedRoute, IOException failure) { in connectFailed()
226 private Route nextPostponed() { in nextPostponed()
DStreamAllocation.java21 import com.android.okhttp.Route;
176 Route route = routeSelector.next(); in findConnection()
282 Route failedRoute = connection.getRoute(); in connectionFailed()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DRouteSelector.java20 import com.squareup.okhttp.Route;
55 private final List<Route> postponedRoutes = new ArrayList<>();
74 public Route next() throws IOException { in next()
87 Route route = new Route(address, lastProxy, lastInetSocketAddress); in next()
101 public void connectFailed(Route failedRoute, IOException failure) { in connectFailed()
223 private Route nextPostponed() { in nextPostponed()
DStreamAllocation.java20 import com.squareup.okhttp.Route;
174 Route route = routeSelector.next(); in findConnection()
280 Route failedRoute = connection.getRoute(); in connectionFailed()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DDefaultRouter.java196 Route route = (Route) routes.getFirst(); in getNextHop()
265 Route first = (Route) routes.getFirst(); in fixStrictRouting()
272 Route route = new Route(addr); in fixStrictRouting()
DSIPClientTransaction.java36 import gov.nist.javax.sip.header.Route;
1166 Route route = new Route(); in createAck()
1177 if (!((SipURI) ((Route) routeList.getFirst()).getAddress().getURI()).hasLrParam()) { in createAck()
1181 Route route = null; in createAck()
1183 route = new Route(); in createAck()
1187 Route firstRoute = (Route) routeList.getFirst(); in createAck()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DConnectionPoolTest.java41 private final Route routeA1 = newRoute(addressA);
43 private final Route routeB1 = newRoute(addressB);
45 private final Route routeC1 = newRoute(addressC);
190 private RealConnection newConnection(ConnectionPool pool, Route route, long idleAtNanos) { in newConnection()
207 private Route newRoute(Address address) { in newRoute()
208 return new Route(address, Proxy.NO_PROXY, in newRoute()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DRouteParser.java70 Route route = new Route(); in parse()
/external/autotest/client/cros/
Drouting.py28 class Route(object): class
72 class IPv4Route(Route):
106 class IPv6Route(Route):
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
DRouteSelectorTest.java22 import com.squareup.okhttp.Route;
104 Route route = routeSelector.next(); in singleRouteReturnsFailedRoute()
292 List<Route> regularRoutes = new ArrayList<>(); in failedRoutesAreLast()
304 List<Route> routesWithFailedRoute = new ArrayList<>(); in failedRoutesAreLast()
332 private void assertRoute(Route route, Address address, Proxy proxy, InetAddress socketAddress, in assertRoute()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/io/
DRealConnection.java29 import com.android.okhttp.Route;
72 private final Route route;
92 public RealConnection(Route route) { in RealConnection()
330 @Override public Route getRoute() { in getRoute()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
DRealConnection.java28 import com.squareup.okhttp.Route;
68 private final Route route;
88 public RealConnection(Route route) { in RealConnection()
326 @Override public Route getRoute() { in getRoute()
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.ascend68 ATTRIBUTE Ascend-IPX-Route 174 string
122 ATTRIBUTE Ascend-Route-IP 228 integer
123 ATTRIBUTE Ascend-Route-IPX 229 integer
186 VALUE Ascend-Route-IPX Route-IPX-No 0
187 VALUE Ascend-Route-IPX Route-IPX-Yes 1

123