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

/external/deqp/framework/delibs/dethread/
H A DdeAtomic.h67 * \brief Atomic compare and exchange (CAS).
70 * \param exchange New value.
75 * exchange value.
80 DE_INLINE deUint32 deAtomicCompareExchange32 (deUint32 volatile* dstAddr, deUint32 compare, deUint32 exchange) argument
83 return _InterlockedCompareExchange((long volatile*)dstAddr, exchange, compare);
85 return __sync_val_compare_and_swap(dstAddr, compare, exchange);
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DAuthentication.java28 * Simple authentication interface that sets required fields on the exchange.
32 public void setCredentials( HttpExchange exchange) throws IOException; argument
H A DDigestAuthentication.java44 public void setCredentials( HttpExchange exchange )
55 buffer.append(", ").append("uri").append('=').append('"').append(exchange.getURI()).append('"');
59 String cnonce = newCnonce(exchange, securityRealm, details);
62 exchange, securityRealm, details)).append('"');
71 exchange.setRequestHeader( HttpHeaders.AUTHORIZATION,
75 protected String newResponse(String cnonce, HttpExchange exchange, Realm securityRealm, Map details) argument
89 md.update(exchange.getMethod().getBytes(StringUtil.__ISO_8859_1));
91 md.update(exchange.getURI().getBytes(StringUtil.__ISO_8859_1));
116 protected String newCnonce(HttpExchange exchange, Realm securityRealm, Map details) argument
/external/jetty/src/java/org/eclipse/jetty/client/
H A DBlockingHttpConnection.java59 protected void exchangeExpired(HttpExchange exchange) argument
63 super.exchangeExpired(exchange);
115 HttpExchange exchange;
118 exchange=_exchange;
119 while (exchange == null)
124 exchange=_exchange;
138 LOG.debug("exchange {}",exchange);
143 if (!_generator.isCommitted() && exchange!=null && exchange
[all...]
H A DAbstractHttpConnection.java65 // The current exchange waiting for a response
134 // Adjusts the idle timeout in case the default or exchange timeout
147 // Make it larger than the exchange timeout so that there are
148 // no races between the idle timeout and the exchange timeout
271 HttpExchange exchange = _exchange;
272 if (exchange==null)
274 LOG.warn("No exchange for response");
284 exchange.setEventListener(new NonFinalResponseListener(exchange));
289 if (HttpMethods.CONNECT.equalsIgnoreCase(exchange
432 exchangeExpired(HttpExchange exchange) argument
497 NonFinalResponseListener(HttpExchange exchange) argument
[all...]
H A DHttpDestination.java376 // Another connection stole the exchange that caused the creation of this connection ?
385 HttpExchange exchange = _exchanges.remove(0);
386 send(connection, exchange);
552 // Schedule the timeout here, before we queue the exchange
579 protected void exchangeExpired(HttpExchange exchange) argument
581 // The exchange may expire while waiting in the
585 _exchanges.remove(exchange);
589 protected void send(AbstractHttpConnection connection, HttpExchange exchange) throws IOException argument
593 // If server closes the connection, put the exchange back
594 // to the exchange queu
[all...]
H A DHttpClient.java59 * to send a request. The exchange contains both the headers and content (source) of the request
160 public void send(HttpExchange exchange) throws IOException argument
162 boolean ssl = HttpSchemes.HTTPS_BUFFER.equalsIgnoreCase(exchange.getScheme());
163 HttpDestination destination = getDestination(exchange.getAddress(), ssl);
164 destination.send(exchange);
523 * @return the period in ms that an exchange will wait for a response from the server.
535 * @param timeout the period in ms that an exchange will wait for a response from the server.
545 * @return the period in ms that an exchange will wait for a response from the server.
554 * @param timeout the period in ms that an exchange will wait for a response from the server.
/external/bison/lib/
H A Dgetopt.c147 exchange (char **argv, struct _getopt_data *d)
400 exchange them so that the options come first. */
404 exchange ((char **) argv, d);
418 then exchange with previous non-options as if it were an option,
427 exchange ((char **) argv, d);
144 exchange (char **argv, struct _getopt_data *d) function
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DProxyServlet.java444 HttpExchange exchange = new HttpExchange()
551 exchange.setScheme(HttpSchemes.HTTPS.equals(request.getScheme())?HttpSchemes.HTTPS_BUFFER:HttpSchemes.HTTP_BUFFER);
552 exchange.setMethod(request.getMethod());
553 exchange.setURL(url.toString());
554 exchange.setVersion(request.getProtocol());
571 exchange.setRequestHeader("Host",_hostHeader);
602 exchange.setRequestHeader(HttpHeaders.CONTENT_LENGTH,Long.toString(contentLength));
618 exchange.setRequestHeader(hdr,val);
624 exchange.setRequestHeader("Via","1.1 (jetty)");
627 exchange
739 customizeExchange(HttpExchange exchange, HttpServletRequest request) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mdnsresponder/mDNSCore/
H A DmDNSEmbeddedAPI.h712 typedef packedstruct { mDNSu16 preference; domainname exchange; } rdataMX; variable
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 1474 milliseconds