Searched defs:client (Results 151 - 175 of 428) sorted by relevance

1234567891011>>

/external/libvncserver/libvncclient/
H A Dcursor.c32 ((((uint##bpp##_t)(r) & 0xFF) * client->format.redMax + 127) / 255 \
33 << client->format.redShift | \
34 (((uint##bpp##_t)(g) & 0xFF) * client->format.greenMax + 127) / 255 \
35 << client->format.greenShift | \
36 (((uint##bpp##_t)(b) & 0xFF) * client->format.blueMax + 127) / 255 \
37 << client->format.blueShift)
46 rfbBool HandleCursorShape(rfbClient* client,int xhot, int yhot, int width, int height, uint32_t enc) argument
56 bytesPerPixel = client->format.bitsPerPixel / 8;
64 if(client->rcSource)
65 free(client
[all...]
H A Dultra.c35 HandleUltraBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
42 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbZlibHeader))
60 if ( client->raw_buffer_size < (int)uncompressedBytes) {
61 if ( client->raw_buffer != NULL ) {
62 free( client->raw_buffer );
64 client->raw_buffer_size = uncompressedBytes;
66 if ((client->raw_buffer_size % 4)!=0)
67 client->raw_buffer_size += (4-(client->raw_buffer_size % 4));
68 client
115 HandleUltraZipBPP(rfbClient* client, int rx, int ry, int rw, int rh) argument
[all...]
/external/libweave/third_party/chromium/crypto/
H A Dp224_spake_unittest.cc24 bool RunExchange(P224EncryptedKeyExchange* client, argument
29 client_message = client->GetNextMessage();
33 client_result = client->ProcessMessage(server_message);
46 client->GetUnverifiedKey() == server->GetUnverifiedKey());
63 P224EncryptedKeyExchange client(
68 EXPECT_TRUE(RunExchange(&client, &server, true));
69 EXPECT_EQ(client.GetKey(), server.GetKey());
73 P224EncryptedKeyExchange client(
80 EXPECT_FALSE(RunExchange(&client, &server, false));
84 P224EncryptedKeyExchange client(P224EncryptedKeyExchang
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.c104 struct nouveau_client *client = context_client(ctx); local
121 nouveau_bo_map(a->bo, NOUVEAU_BO_RD, client);
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java20 import org.apache.http.client.HttpClient;
21 import org.apache.http.client.ResponseHandler;
22 import org.apache.http.client.methods.HttpUriRequest;
37 * <strong>Warning:</strong> Many core features of Apache HTTP client are not implemented by this
106 Proxy proxy = client.getProxy();
123 client.setProxy(proxy);
138 private final OkHttpClient client; field in class:OkApacheClient
144 public OkApacheClient(OkHttpClient client) { argument
145 this.client = client;
[all...]
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
H A DHttpsURLConnectionImpl.java29 public HttpsURLConnectionImpl(URL url, OkHttpClient client) { argument
30 this(new HttpURLConnectionImpl(url, client));
33 public HttpsURLConnectionImpl(URL url, OkHttpClient client, URLFilter filter) { argument
34 this(new HttpURLConnectionImpl(url, client, filter));
56 delegate.client.setHostnameVerifier(hostnameVerifier);
60 return delegate.client.getHostnameVerifier();
64 delegate.client.setSslSocketFactory(sslSocketFactory);
68 return delegate.client.getSslSocketFactory();
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
H A DAutobahnTester.java43 final OkHttpClient client = new OkHttpClient(); field in class:AutobahnTester
47 return WebSocketCall.create(client, request);
61 client.getDispatcher().getExecutorService().shutdown();
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
H A DProgress.java33 private final OkHttpClient client = new OkHttpClient(); field in class:Progress
49 client.networkInterceptors().add(new Interceptor() {
58 Response response = client.newCall(request).execute();
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAndroidHttpClient.java10 import org.apache.http.client.ClientProtocolException;
11 import org.apache.http.client.HttpClient;
12 import org.apache.http.client.ResponseHandler;
13 import org.apache.http.client.methods.HttpUriRequest;
15 import org.apache.http.impl.client.DefaultHttpClient;
26 @RealObject private AndroidHttpClient client; field in class:ShadowAndroidHttpClient
/external/webrtc/webrtc/base/
H A Dhttpserver_unittest.cc61 StreamSource* client = new StreamSource; local
62 client->SetState(SS_OPEN);
63 server.HandleConnection(client);
69 client->QueueString(kRequest);
78 // Add an active client connection
92 // Add an idle client connection
104 // Add an active client connection
121 // Add an active client connection
/external/webrtc/webrtc/examples/peerconnection/client/linux/
H A Dmain.cc13 #include "webrtc/examples/peerconnection/client/conductor.h"
14 #include "webrtc/examples/peerconnection/client/flagdefs.h"
15 #include "webrtc/examples/peerconnection/client/linux/main_wnd.h"
16 #include "webrtc/examples/peerconnection/client/peer_connection_client.h"
27 void set_client(PeerConnectionClient* client) { client_ = client; } argument
87 PeerConnectionClient client; local
89 new rtc::RefCountedObject<Conductor>(&client, &wnd));
90 socket_server.set_client(&client);
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivityHandler.java17 package com.google.zxing.client.android;
20 import com.google.zxing.client.android.camera.CameraManager;
H A DDecodeHandler.java17 package com.google.zxing.client.android;
H A DPlanarYUVLuminanceSource.java17 package com.google.zxing.client.android;
/external/caliper/lib/
H A Djersey-client-1.11.jar ... api/ com/sun/jersey/api/client/ com/sun/jersey/api/client/AbstractClientRequestAdapter.class AbstractClientRequestAdapter.java package com.sun ...
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpRequestBase.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpRequestBase.java $
32 package org.apache.http.client.methods;
41 import org.apache.http.client.utils.CloneUtils;
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/ClientParamBean.java $
32 package org.apache.http.client.params;
/external/apache-http/src/org/apache/http/impl/client/
H A DClientParamsStack.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/ClientParamsStack.java $
32 package org.apache.http.impl.client;
55 * {@link org.apache.http.client.HttpClient HttpClient}.
56 * These provide client specific defaults.
60 * For overriding client and global defaults.
64 * {@link org.apache.http.client.HttpClient HttpClient}.
90 /** The client parameter collection, or <code>null</code>. */
106 * @param cparams client parameters, or <code>null</code>
143 * @param cparams client parameter
[all...]
H A DDefaultHttpClient.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/DefaultHttpClient.java $
32 package org.apache.http.impl.client;
37 import org.apache.http.client.AuthenticationHandler;
38 import org.apache.http.client.CookieStore;
39 import org.apache.http.client.CredentialsProvider;
40 import org.apache.http.client.HttpRequestRetryHandler;
41 import org.apache.http.client.RedirectHandler;
42 import org.apache.http.client.UserTokenHandler;
43 import org.apache.http.client
[all...]
H A DRequestWrapper.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/RequestWrapper.java $
32 package org.apache.http.impl.client;
41 import org.apache.http.client.methods.HttpUriRequest;
/external/autotest/client/bin/
H A Dprespawner.py22 import autotest_lib.client.bin.job namespace
25 from autotest_lib.client.bin import sysinfo, base_sysinfo
26 sysinfo.sysinfo = autotest_lib.client.bin.base_sysinfo.base_sysinfo
/external/autotest/client/tests/netperf2/
H A Dnetperf2.py2 from autotest_lib.client.bin import test, utils
3 from autotest_lib.client.bin.net import net_utils
4 from autotest_lib.client.common_lib import error
41 client_ip: IP address of host running netperf client(s)
42 role: 'client' or 'server'
72 client_tag = client_ip + '#netperf-client'
89 # Wait up to ten minutes for the client to reach this
100 elif role == 'client':
104 self.client(server_ip, test, test_time, num_streams,
140 def client(sel member in class:netperf2
[all...]
/external/autotest/server/site_tests/brillo_PlaybackAudioTest/
H A Dbrillo_PlaybackAudioTest.py12 from autotest_lib.client.common_lib import error
13 from autotest_lib.client.common_lib.feedback import client namespace
97 @param fb_client: A feedback client implementation.
110 fb_query = fb_client.new_query(client.QUERY_AUDIO_PLAYBACK_SILENT)
143 fb_query = fb_client.new_query(client.QUERY_AUDIO_PLAYBACK_AUDIBLE)
/external/avahi/avahi-client/
H A Drr-test.c27 #include <avahi-client/client.h>
28 #include <avahi-client/lookup.h>
90 AvahiClient *client; local
99 client = avahi_client_new(poll_api, 0, NULL, NULL, NULL);
100 assert(client);
102 r = avahi_record_browser_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "ecstasy.local", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_HINFO, 0, callback, simple_poll);
107 avahi_client_free(client);
/external/avahi/avahi-utils/
H A Davahi-set-host-name.c38 #include <avahi-client/client.h>
54 static AvahiClient *client = NULL; variable
159 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error))) {
160 fprintf(stderr, _("Failed to create client object: %s\n"), avahi_strerror(error));
167 if (!(version = avahi_client_get_version_string(client))) {
168 fprintf(stderr, _("Failed to query version string: %s\n"), avahi_strerror(avahi_client_errno(client)));
172 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
173 fprintf(stderr, _("Failed to query host name: %s\n"), avahi_strerror(avahi_client_errno(client)));
180 if (avahi_client_set_host_name(client, arg
[all...]

Completed in 1025 milliseconds

1234567891011>>