HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 1 - 25 of 4297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvncserver/libvncclient/
vncviewer.c 44 static void Dummy(rfbClient* client) {
46 static rfbBool DummyPoint(rfbClient* client, int x, int y) {
49 static void DummyRect(rfbClient* client, int x, int y, int w, int h) {
53 static char* NoPassword(rfbClient* client) {
62 static char* ReadPassword(rfbClient* client) {
66 return NoPassword(client);
91 static rfbBool MallocFrameBuffer(rfbClient* client) {
94 if(client->frameBuffer)
95 free(client->frameBuffer);
101 allocSize = (uint64_t)client->width * client->height * client->format.bitsPerPixel/8
141 rfbClient* client=(rfbClient*)calloc(sizeof(rfbClient),1); local
    [all...]
listen.c 49 listenForIncomingConnections(rfbClient* client)
59 client->listenSpecified = TRUE;
61 listenSocket = ListenAtTcpPortAndAddress(client->listenPort, client->listenAddress);
67 client->programName,client->listenPort);
69 "a connection comes in.\n", client->programName);
73 if (client->listen6Port > 0)
75 listen6Socket = ListenAtTcpPortAndAddress(client->listen6Port, client->listen6Address)
    [all...]
tls.h 24 * After authentication, client->tlsSession will be set.
26 rfbBool HandleAnonTLSAuth(rfbClient* client);
30 * After authentication, client->tlsSession will be set.
32 rfbBool HandleVeNCryptAuth(rfbClient* client);
40 int ReadFromTLS(rfbClient* client, char *out, unsigned int n);
46 int WriteToTLS(rfbClient* client, char *buf, unsigned int n);
49 void FreeTLS(rfbClient* client);
ultra.c 35 HandleUltraBPP (rfbClient* client, int rx, int ry, int rw, int rh)
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->raw_buffer = (char*) malloc( client->raw_buffer_size )
    [all...]
zlib.c 36 HandleZlibBPP (rfbClient* client, int rx, int ry, int rw, int rh)
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->buffer
    [all...]
cursor.c 32 ((((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)
56 bytesPerPixel = client->format.bitsPerPixel / 8;
64 if(client->rcSource)
65 free(client->rcSource)
    [all...]
tls_none.c 24 rfbBool HandleAnonTLSAuth(rfbClient* client)
31 rfbBool HandleVeNCryptAuth(rfbClient* client)
38 int ReadFromTLS(rfbClient* client, char *out, unsigned int n)
46 int WriteToTLS(rfbClient* client, char *buf, unsigned int n)
54 void FreeTLS(rfbClient* client)
tight.c 53 (((CARD##bpp)(r) & client->format.redMax) << client->format.redShift | \
54 ((CARD##bpp)(g) & client->format.greenMax) << client->format.greenShift | \
55 ((CARD##bpp)(b) & client->format.blueMax) << client->format.blueShift)
58 ((((CARD##bpp)(r) & 0xFF) * client->format.redMax + 127) / 255 \
59 << client->format.redShift | \
60 (((CARD##bpp)(g) & 0xFF) * client->format.greenMax + 127) / 255 \
61 << client->format.greenShift |
624 rfbClient* client=(rfbClient*)cinfo->client_data; local
631 rfbClient* client=(rfbClient*)cinfo->client_data; local
642 rfbClient* client=(rfbClient*)cinfo->client_data; local
664 rfbClient* client=(rfbClient*)cinfo->client_data; local
    [all...]
rfbproto.c 23 * rfbproto.c - functions to deal with client side of RFB protocol.
117 /* client data */
119 void rfbClientSetClientData(rfbClient* client, void* tag, void* data)
121 rfbClientData* clientData = client->clientData;
127 clientData->next = client->clientData;
128 client->clientData = clientData;
135 void* rfbClientGetClientData(rfbClient* client, void* tag)
137 rfbClientData* clientData = client->clientData;
150 static void FillRectangle(rfbClient* client, int x, int y, int w, int h, uint32_t colour) {
154 for(j=y*client->width;j<(y+h)*client->width;j+=client->width)
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/google/gwt/webgl/client/
WebGLBuffer.java 17 package com.google.gwt.webgl.client;
19 import com.google.gwt.core.client.JavaScriptObject;
WebGLObject.java 17 package com.google.gwt.webgl.client;
19 import com.google.gwt.core.client.JavaScriptObject;
WebGLFramebuffer.java 17 package com.google.gwt.webgl.client;
WebGLProgram.java 17 package com.google.gwt.webgl.client;
WebGLRenderbuffer.java 17 package com.google.gwt.webgl.client;
WebGLShader.java 17 package com.google.gwt.webgl.client;
WebGLTexture.java 17 package com.google.gwt.webgl.client;
WebGLUniformLocation.java 17 package com.google.gwt.webgl.client;
  /system/bt/stack/l2cap/
l2cap_client.c 55 static void fragment_packet(l2cap_client_t *client, buffer_t *packet);
56 static void dispatch_fragments(l2cap_client_t *client);
95 LOG_ERROR(LOG_TAG, "%s unable to allocate space for L2CAP client list.", __func__);
121 void l2cap_client_free(l2cap_client_t *client) {
122 if (!client)
125 list_remove(l2cap_clients, client);
126 l2cap_client_disconnect(client);
127 list_free(client->outbound_fragments);
128 osi_free(client);
131 bool l2cap_client_connect(l2cap_client_t *client, const bt_bdaddr_t *remote_bdaddr, uint16_t psm)
191 l2cap_client_t *client = find(local_channel_id); local
214 l2cap_client_t *client = find(local_channel_id); local
258 l2cap_client_t *client = find(local_channel_id); local
292 l2cap_client_t *client = find(local_channel_id); local
311 l2cap_client_t *client = find(local_channel_id); local
326 l2cap_client_t *client = find(local_channel_id); local
347 l2cap_client_t *client = find(local_channel_id); local
427 l2cap_client_t *client = (l2cap_client_t *)list_node(node); local
    [all...]
  /external/autotest/server/site_tests/enterprise_RemoraRequisitionServer/
enterprise_RemoraRequisitionServer.py 5 from autotest_lib.client.common_lib.cros import tpm_utils
15 self.client = host
17 tpm_utils.ClearTPMOwnerRequest(self.client)
18 autotest.Autotest(self.client).run_test('enterprise_RemoraRequisition')
19 tpm_utils.ClearTPMOwnerRequest(self.client)
  /external/libdrm/tests/
getclient.c 38 drm_client_t client; local
42 /* Look for client index 0. This should exist whether we're operating
46 client.idx = 0;
47 ret = ioctl(fd, DRM_IOCTL_GET_CLIENT, &client);
50 /* Look for some absurd client index and make sure it's invalid.
55 client.idx = 0x7fffffff;
56 ret = ioctl(fd, DRM_IOCTL_GET_CLIENT, &client);
  /external/avahi/avahi-client/
client.c 38 #include "client.h"
43 static int init_server(AvahiClient *client, int *ret_error);
45 int avahi_client_set_errno (AvahiClient *client, int error) {
46 assert(client);
48 return client->error = error;
51 int avahi_client_set_dbus_error(AvahiClient *client, DBusError *error) {
52 assert(client);
55 return avahi_client_set_errno(client, avahi_error_dbus_to_number(error->name));
58 static void client_set_state(AvahiClient *client, AvahiClientState state) {
59 assert(client);
104 AvahiClient *client = userdata; local
479 AvahiClient *client = NULL; local
    [all...]
  /system/bt/stack/include/
l2cap_client.h 29 void (*connected)(l2cap_client_t *client, void *context);
30 void (*disconnected)(l2cap_client_t *client, void *context);
31 void (*read_ready)(l2cap_client_t *client, buffer_t *packet, void *context);
32 void (*write_ready)(l2cap_client_t *client, void *context);
41 // Creates and returns a new L2CAP client object. |callbacks| must not be NULL and
48 // Frees the L2CAP client object allocated with |l2cap_client_new|. |client| may be NULL.
49 void l2cap_client_free(l2cap_client_t *client);
51 // Attempts to connect the |client| to a peer device specified by |remote_bdaddr|
57 // while |l2cap_client_is_connected|. |client| and |remote_bdaddr| must not be NULL
    [all...]
  /frameworks/base/media/java/android/media/
IMediaRouterService.aidl 26 void registerClientAsUser(IMediaRouterClient client, String packageName, int userId);
27 void unregisterClient(IMediaRouterClient client);
29 MediaRouterClientState getState(IMediaRouterClient client);
31 void setDiscoveryRequest(IMediaRouterClient client, int routeTypes, boolean activeScan);
32 void setSelectedRoute(IMediaRouterClient client, String routeId, boolean explicit);
33 void requestSetVolume(IMediaRouterClient client, String routeId, int volume);
34 void requestUpdateVolume(IMediaRouterClient client, String routeId, int direction);
  /external/autotest/client/common_lib/
utils.py 11 from autotest_lib.client.common_lib.base_utils import *
12 from autotest_lib.client.common_lib.lsbrelease_utils import *
14 from autotest_lib.client.common_lib.site_utils import *
  /external/libvncserver/client_examples/
ppmtest.c 3 * A simple example of an RFB client
12 static void PrintRect(rfbClient* client, int x, int y, int w, int h) {
16 static void SaveFramebufferAsPPM(rfbClient* client, int x, int y, int w, int h) {
20 rfbPixelFormat* pf=&client->format;
22 int row_stride=client->width*bpp;
43 fprintf(f,"P6\n# %s\n%d %d\n255\n",client->desktopName,client->width,client->height);
44 for(j=0;j<client->height*row_stride;j+=row_stride)
45 for(i=0;i<client->width*bpp;i+=bpp)
64 rfbClient* client = rfbGetClient(8,3,4); local
    [all...]

Completed in 1334 milliseconds

1 2 3 4 5 6 7 8 91011>>