Searched defs:hop (Results 1 - 15 of 15) 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/vixl/examples/
H A Ddebugger.cc39 Label hop; local
42 __ B(&hop);
44 __ 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/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.java657 final int hop = fact.getHopCount()-1; // the hop to establish
658 boolean secure = createTunnelToProxy(route, hop, context);
660 managedConn.tunnelProxy(route.getHopTarget(hop),
820 // Even if that is secure, the hop to the target may be insecure.
834 * @param hop the hop in the route to establish now.
835 * <code>route.getHopTarget(hop)</code>
845 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/libxml2/
H A Dxmlschemas.c12629 xmlAutomataStatePtr hop; local
12637 hop = xmlAutomataNewState(pctxt->am);
12643 hop);
12653 hop);
12655 xmlAutomataNewCountedTrans(pctxt->am, hop, start, counter);
12656 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
12801 xmlAutomataStatePtr hop; local
12809 hop = xmlAutomataNewState(pctxt->am);
12814 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
12818 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
13004 xmlAutomataStatePtr hop, base; local
[all...]
/external/robolectric/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 720 milliseconds