Searched defs:client (Results 76 - 100 of 327) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCredentialsProvider.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/BasicCredentialsProvider.java $
31 package org.apache.http.impl.client;
37 import org.apache.http.client.CredentialsProvider;
H A DDefaultHttpRequestRetryHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/DefaultHttpRequestRetryHandler.java $
32 package org.apache.http.impl.client;
41 import org.apache.http.client.HttpRequestRetryHandler;
H A DDefaultRedirectHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/DefaultRedirectHandler.java $
32 package org.apache.http.impl.client;
45 import org.apache.http.client.CircularRedirectException;
46 import org.apache.http.client.RedirectHandler;
47 import org.apache.http.client.params.ClientPNames;
48 import org.apache.http.client.utils.URIUtils;
H A DEntityEnclosingRequestWrapper.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/EntityEnclosingRequestWrapper.java $
32 package org.apache.http.impl.client;
H A DRedirectLocations.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/RedirectLocations.java $
32 package org.apache.http.impl.client;
H A DRoutedRequest.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/RoutedRequest.java $
32 package org.apache.http.impl.client;
/external/jetty/src/java/org/eclipse/jetty/client/
H A DAddress.java19 package org.eclipse.jetty.client;
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DHashRealmResolver.java19 package org.eclipse.jetty.client.security;
25 import org.eclipse.jetty.client.HttpDestination;
/external/jetty/src/java/org/eclipse/jetty/client/webdav/
H A DMkcolExchange.java19 package org.eclipse.jetty.client.webdav;
23 import org.eclipse.jetty.client.CachedExchange;
H A DPropfindExchange.java19 package org.eclipse.jetty.client.webdav;
23 import org.eclipse.jetty.client.HttpExchange;
H A DWebdavSupportedExchange.java19 package org.eclipse.jetty.client.webdav;
23 import org.eclipse.jetty.client.HttpExchange;
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestLatency.java43 private static Client client; field in class:TestLatency
78 client = Network.connectToServer("localhost", 5110);
79 client.start();
81 client.addMessageListener(new MessageListener<Client>(){
88 //System.out.println("Time recieved by client: " + curTime);
101 client.send(new TimestampMessage(getTime(), 0));
115 client.send(new TimestampMessage(getTime(), 0));
/external/libvncserver/libvncclient/
H A Dcorre.c33 HandleCoRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
41 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbRREHeader))
46 if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix)))
49 FillRectangle(client, rx, ry, rw, rh, pix);
51 if (!ReadFromRFBServer(client, client->buffer, hdr.nSubrects * (4 + (BPP / 8))))
54 ptr = (uint8_t *)client->buffer;
64 FillRectangle(client, rx+x, ry+y, w, h, pix);
H A Drre.c33 HandleRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
40 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbRREHeader))
45 if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix)))
48 FillRectangle(client, rx, ry, rw, rh, pix);
51 if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix)))
54 if (!ReadFromRFBServer(client, (char *)&subrect, sz_rfbRectangle))
62 FillRectangle(client, rx+subrect.x, ry+subrect.y, subrect.w, subrect.h, pix);
H A Dzlib.c36 HandleZlibBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
49 if ( client->raw_buffer_size < (( rw * rh ) * ( BPP / 8 ))) {
51 if ( client->raw_buffer != NULL ) {
53 free( client->raw_buffer );
57 client->raw_buffer_size = (( rw * rh ) * ( BPP / 8 ));
58 client->raw_buffer = (char*) malloc( client->raw_buffer_size );
62 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbZlibHeader))
68 client->decompStream.next_in = ( Bytef * )client
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.c38 struct nouveau_client *client = context_client(ctx); local
54 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client);
64 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java17 package net.oauth.client;
H A DURLConnectionResponse.java17 package net.oauth.client;
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java17 package net.oauth.client.httpclient4;
26 import net.oauth.client.ExcerptInputStream;
32 import org.apache.http.client.methods.HttpRequestBase;
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DApacheHttpClient.java27 import org.apache.http.client.HttpClient;
28 import org.apache.http.client.methods.HttpGet;
32 import org.apache.http.impl.client.DefaultHttpClient;
35 /** Benchmark Apache HTTP client. */
39 private HttpClient client; field in class:ApacheHttpClient
49 client = new DefaultHttpClient(connectionManager);
66 HttpResponse response = client.execute(new HttpGet(url.toString()));
H A DOkHttp.java33 private OkHttpClient client; field in class:OkHttp
37 client = new OkHttpClient();
38 client.setProtocols(benchmark.protocols);
48 client.setSslSocketFactory(socketFactory);
49 client.setHostnameVerifier(hostnameVerifier);
67 HttpURLConnection urlConnection = new OkUrlFactory(client).open(url);
H A DOkHttpAsync.java41 private OkHttpClient client; field in class:OkHttpAsync
50 client = new OkHttpClient();
51 client.setProtocols(benchmark.protocols);
52 client.setDispatcher(new Dispatcher(new ThreadPoolExecutor(benchmark.concurrencyLevel,
63 client.setSslSocketFactory(socketFactory);
64 client.setHostnameVerifier(hostnameVerifier);
88 client.newCall(new Request.Builder().tag(System.nanoTime()).url(url).build()).enqueue(callback);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DVariant.java29 * @param client true if this is the HTTP client's reader, reading frames from a server.
31 FrameReader newReader(BufferedSource source, boolean client); argument
34 * @param client true if this is the HTTP client's writer, writing frames to a server.
36 FrameWriter newWriter(BufferedSink sink, boolean client); argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DDisconnectTest.java47 private OkHttpClient client; field in class:DisconnectTest
51 client = new OkHttpClient();
62 client.setSocketFactory(new DelegatingSocketFactory(SocketFactory.getDefault()) {
78 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/"));
105 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/"));
H A DThreadInterruptTest.java49 private OkHttpClient client; field in class:ThreadInterruptTest
53 client = new OkHttpClient();
64 client.setSocketFactory(new DelegatingSocketFactory(SocketFactory.getDefault()) {
82 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/"));
109 HttpURLConnection connection = new OkUrlFactory(client).open(server.getUrl("/"));

Completed in 901 milliseconds

1234567891011>>