Searched refs:hop (Results 1 - 25 of 31) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DHopImpl.java69 * Create new hop given host, port and transport.
90 * @param hop is a hop string in the form of host:port/Transport
93 HopImpl(String hop) throws IllegalArgumentException { argument
95 if (hop == null)
98 // System.out.println("hop = " + hop);
99 int brack = hop.indexOf(']');
100 int colon = hop.indexOf(':',brack);
101 int slash = hop
[all...]
H A DDefaultRouter.java66 * <code>false</code>, the next hop is determined according to the following
70 * topmost Route header as next hop, possibly modifying the request in the
73 * use its value as the next hop
74 * <li> Otherwise, use the request URI as next hop. If the request URI is not a
81 * (which means the next hop is a strict router), the implementation will
91 * Subsequently, the request URI will be used as next hop target
133 * next hop on the list. If the default route has been specified, then it is
177 * means the next hop is a strict router), the implementation will
189 * Subsequently, the request URI will be used as next hop target
194 // to send the request through a specified hop th
[all...]
H A DMessageChannel.java196 * @param hop hop to send it to.
199 public void sendMessage(SIPMessage sipMessage, Hop hop) throws IOException { argument
201 InetAddress hopAddr = InetAddress.getByName(hop.getHost());
207 && messageProcessor.getPort() == hop.getPort()
208 && messageProcessor.getTransport().equals(hop.getTransport())) {
210 hopAddr, hop.getPort());
222 this.sendMessage(msg, hopAddr, hop.getPort(), sipMessage instanceof SIPRequest);
235 logMessage(sipMessage, hopAddr, hop.getPort(), time);
H A DSIPDialog.java973 Hop hop = sipStack.getNextHop(ackRequest);
974 // Hop hop = defaultRouter.getNextHop(ackRequest);
975 if (hop == null)
979 sipStack.getStackLogger().logDebug("hop = " + hop);
980 ListeningPointImpl lp = (ListeningPointImpl) this.sipProvider.getListeningPoint(hop
984 + hop);
985 InetAddress inetAddress = InetAddress.getByName(hop.getHost());
987 inetAddress, hop.getPort());
1010 this.raiseIOException(hop
[all...]
H A DUDPMessageChannel.java420 Hop hop = sipStack.addressResolver.resolveAddress(v.getHop());
421 this.peerPort = hop.getPort();
434 || !hop.getHost().equals(
H A DTCPMessageChannel.java437 Hop hop = sipStack.addressResolver.resolveAddress(v.getHop());
449 // InetAddress.getByName(hop.getHost());
452 || !hop.getHost().equals(this.peerAddress.getHostAddress())) {
H A DTLSMessageChannel.java413 Hop hop = sipStack.addressResolver.resolveAddress(v.getHop());
421 // InetAddress sentByAddress = InetAddress.getByName(hop.getHost());
424 || !hop.getHost().equals(this.peerAddress.getHostAddress())) {
H A DSIPServerTransaction.java477 Hop hop = sipStack.addressResolver.resolveAddress(new HopImpl(host, port,
482 hop.getTransport()).getIPAddress(), this.getPort(), hop);
486 throw new IOException("Could not create a message channel for " + hop);
H A DSIPClientTransaction.java1528 * Set the next hop ( if it has already been computed).
1530 * @param hop -- the hop that has been previously computed.
1532 public void setNextHop(Hop hop) { argument
1533 this.nextHop = hop;
1538 * Reeturn the previously computed next hop (avoid computing it twice).
1540 * @return -- next hop previously computed.
/external/nist-sip/java/gov/nist/core/net/
H A DAddressResolver.java57 * @param hop - an incoming Hop containing a potenitally unresolved address.
58 * @return a new hop ( if the address is recomputed ) or the original hop
61 public Hop resolveAddress( Hop hop); argument
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DRouterExt.java37 * Record that a transaction failure occured for the given hop.
40 public void transactionTimeout(Hop hop); argument
/external/vixl/examples/
H A Ddebugger.cc38 Label hop; local
41 __ B(&hop);
43 __ Bind(&hop);
/external/apache-http/src/org/apache/http/conn/routing/
H A DRouteInfo.java105 * A direct route has one hop. A route through a proxy has two hops.
115 * Obtains the target of a hop in this route.
116 * The target of the last hop is the {@link #getTargetHost target host},
118 * For a route through exactly one proxy, target of hop 0 is the proxy
119 * and target of hop 1 is the target host.
121 * @param hop index of the hop for which to get the target,
124 * @return the target of the given hop
130 HttpHost getHopTarget(int hop) argument
H A DHttpRoute.java281 public final HttpHost getHopTarget(int hop) { argument
282 if (hop < 0)
284 ("Hop index must not be negative: " + hop);
286 if (hop >= hopcount)
288 ("Hop index " + hop +
292 if (hop < hopcount-1)
293 result = this.proxyChain[hop];
H A DRouteTracker.java69 /** Whether the first hop of the route is established. */
245 public final HttpHost getHopTarget(int hop) { argument
246 if (hop < 0)
248 ("Hop index must not be negative: " + hop);
250 if (hop >= hopcount) {
252 ("Hop index " + hop +
257 if (hop < hopcount-1)
258 result = this.proxyChain[hop];
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipProviderImpl.java344 Hop hop = null;
346 hop = sipStack.getNextHop((SIPRequest) request);
347 if (hop == null)
349 "Cannot resolve next hop -- transaction unavailable");
352 "Cannot resolve next hop -- transaction unavailable", ex);
354 String transport = hop.getTransport();
399 .getMessageProcessor(), hop);
402 ct.setNextHop(hop);
431 "Could not resolve next hop or listening point unavailable! ",
682 Hop hop
[all...]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelperImpl.java208 /* Resolve this to the next hop based on the previous lookup. If we are not using
209 * lose routing (RFC2543) then just attach hop as a maddr param.
212 Hop hop = ((SIPClientTransaction) challengedTransaction).getNextHop();
215 if ( !hop.getHost().equalsIgnoreCase(sipUri.getHost())
216 && !hop.equals(sipStack.getRouter(challengedRequest).getOutboundProxy()) )
218 sipUri.setMAddrParam(hop.getHost());
219 if ( hop.getPort() != -1 ) sipUri.setPort(hop.getPort());
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DVia.java157 HopImpl hop = new HopImpl(sentBy.getHost().getHostname(),
159 return hop;
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex58 hop by hop options and all the headers up to and including routing header,
62 There is a hole in specs: some hop-by-hop options can be
80 (f.e.\ in RSVP PATH messages or in some hop-by-hop option).
/external/chromium_org/third_party/webrtc/base/
H A Dnssidentity.cc303 const SECHashObject **hop) {
327 *hop = ho;
302 GetDigestObject(const std::string &algorithm, const SECHashObject **hop) argument
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java650 final int hop = fact.getHopCount()-1; // the hop to establish
651 boolean secure = createTunnelToProxy(route, hop, context);
653 managedConn.tunnelProxy(route.getHopTarget(hop),
813 // Even if that is secure, the hop to the target may be insecure.
827 * @param hop the hop in the route to establish now.
828 * <code>route.getHopTarget(hop)</code>
838 protected boolean createTunnelToProxy(HttpRoute route, int hop, argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DDefaultRequestDirector.java674 final int hop = fact.getHopCount()-1; // the hop to establish
675 boolean secure = createTunnelToProxy(route, hop, context);
677 managedConn.tunnelProxy(route.getHopTarget(hop),
836 // Even if that is secure, the hop to the target may be insecure.
850 * @param hop the hop in the route to establish now.
851 * <code>route.getHopTarget(hop)</code>
861 protected boolean createTunnelToProxy(HttpRoute route, int hop, argument
/external/svox/pico/lib/
H A Dpicosig2.c830 picoos_int16 hop, m2, *nextPeak, voiced; local
840 hop = sig_inObj->hop_p;
3992 * - hop : hop size in samples
4011 picoos_int16 hop, winlen, Fs; local
4018 hop = sig_inObj->hop_p;
4028 /* shift previous excitation window by hop samples*/
4030 sig_inObj->LocV[nI] = sig_inObj->LocV[nI] - hop;
4033 sig_inObj->LocU[nI] = sig_inObj->LocU[nI] - hop;
4057 *nextPeak -= hop;
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemas.c12608 xmlAutomataStatePtr hop; local
12616 hop = xmlAutomataNewState(pctxt->am);
12622 hop);
12632 hop);
12634 xmlAutomataNewCountedTrans(pctxt->am, hop, start, counter);
12635 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
12780 xmlAutomataStatePtr hop; local
12788 hop = xmlAutomataNewState(pctxt->am);
12793 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
12797 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
12974 xmlAutomataStatePtr hop, base; local
[all...]
/external/libxml2/
H A Dxmlschemas.c12627 xmlAutomataStatePtr hop; local
12635 hop = xmlAutomataNewState(pctxt->am);
12641 hop);
12651 hop);
12653 xmlAutomataNewCountedTrans(pctxt->am, hop, start, counter);
12654 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
12799 xmlAutomataStatePtr hop; local
12807 hop = xmlAutomataNewState(pctxt->am);
12812 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
12816 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
13002 xmlAutomataStatePtr hop, base; local
[all...]

Completed in 1039 milliseconds

12