Searched defs:hop (Results 1 - 12 of 12) sorted by relevance

/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/apache-http/src/org/apache/http/conn/routing/
H A DRouteInfo.java100 * A direct route has one hop. A route through a proxy has two hops.
110 * Obtains the target of a hop in this route.
111 * The target of the last hop is the {@link #getTargetHost target host},
113 * For a route through exactly one proxy, target of hop 0 is the proxy
114 * and target of hop 1 is the target host.
116 * @param hop index of the hop for which to get the target,
119 * @return the target of the given hop
125 HttpHost getHopTarget(int hop) argument
H A DHttpRoute.java276 public final HttpHost getHopTarget(int hop) { argument
277 if (hop < 0)
279 ("Hop index must not be negative: " + hop);
281 if (hop >= hopcount)
283 ("Hop index " + hop +
287 if (hop < hopcount-1)
288 result = this.proxyChain[hop];
H A DRouteTracker.java64 /** Whether the first hop of the route is established. */
240 public final HttpHost getHopTarget(int hop) { argument
241 if (hop < 0)
243 ("Hop index must not be negative: " + hop);
245 if (hop >= hopcount) {
247 ("Hop index " + hop +
252 if (hop < hopcount-1)
253 result = this.proxyChain[hop];
/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 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 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/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java645 final int hop = fact.getHopCount()-1; // the hop to establish
646 boolean secure = createTunnelToProxy(route, hop, context);
648 managedConn.tunnelProxy(route.getHopTarget(hop),
808 // Even if that is secure, the hop to the target may be insecure.
822 * @param hop the hop in the route to establish now.
823 * <code>route.getHopTarget(hop)</code>
833 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/kernel-headers/original/linux/
H A Dipv6.h244 __u16 hop; member in struct:inet6_skb_parm
/external/libxml2/
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...]

Completed in 338 milliseconds