HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 26 - 50 of 5616) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8998/location/
location_interface.h 38 void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
39 void (*removeClient)(LocationAPI* client);
40 void (*requestCapabilities)(LocationAPI* client);
41 uint32_t (*startTracking)(LocationAPI* client, LocationOptions& options);
42 void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
43 void (*stopTracking)(LocationAPI* client, uint32_t id);
44 void (*gnssNiResponse)(LocationAPI* client, uint32_t id, GnssNiResponse response);
63 void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
64 void (*removeClient)(LocationAPI* client);
65 void (*requestCapabilities)(LocationAPI* client);
    [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
49 // Frees the L2CAP client object allocated with |l2cap_client_new|. |client| may
51 void l2cap_client_free(l2cap_client_t* client);
53 // Attempts to connect the |client| to a peer device specified by
60 // while |l2cap_client_is_connected|. |client| and |remote_bdaddr| must not b
    [all...]
  /system/tpm/tpm_manager/aidl/android/tpm_manager/
ITpmNvram.aidl 23 oneway void DefineSpace(in byte[] command_proto, in ITpmManagerClient client);
25 in ITpmManagerClient client);
26 oneway void WriteSpace(in byte[] command_proto, in ITpmManagerClient client);
27 oneway void ReadSpace(in byte[] command_proto, in ITpmManagerClient client);
28 oneway void LockSpace(in byte[] command_proto, in ITpmManagerClient client);
29 oneway void ListSpaces(in byte[] command_proto, in ITpmManagerClient client);
31 in ITpmManagerClient client);
ITpmOwnership.aidl 24 in ITpmManagerClient client);
26 in ITpmManagerClient client);
28 in ITpmManagerClient client);
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
MessageReader.java 62 * @param client the client to read messages from
65 public void beforeRead(Client client) {
67 String message = client.nextMessage();
69 chatServer.writeMessageToClients(client, message);
70 message = client.nextMessage();
76 * @param client the client to append messages to
81 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
MessageReader.java 62 * @param client the client to read messages from
65 public void beforeRead(Client client) {
67 String message = client.nextMessage();
69 chatServer.writeMessageToClients(client, message);
70 message = client.nextMessage();
76 * @param client the client to append messages to
81 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
  /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...]
backchannel.c 2 * @example backchannel-client.c
3 * A simple example of an RFB client
12 static void HandleRect(rfbClient* client, int x, int y, int w, int h) {
16 * The client part of the back channel extension example.
29 static void sendMessage(rfbClient* client, char* text)
36 if(!WriteToRFBServer(client, (char*)&msg, sizeof(msg)) ||
37 !WriteToRFBServer(client, text, length)) {
42 static rfbBool handleBackChannelMessage(rfbClient* client,
51 rfbClientSetClientData(client, sendMessage, sendMessage);
53 if(!ReadFromRFBServer(client, ((char*)&msg)+1, sizeof(msg)-1)
80 rfbClient* client = rfbGetClient(8,3,4); local
    [all...]
  /frameworks/native/libs/vr/libvrsensor/include/dvr/
pose_client.h 70 // Creates a new pose client.
72 // @return Pointer to the created pose client, nullptr on failure.
75 // Destroys a pose client.
77 // @param client Pointer to the pose client to be destroyed.
78 void dvrPoseClientDestroy(DvrPoseClient* client);
82 // @param client Pointer to the pose client.
87 int dvrPoseClientGet(DvrPoseClient* client, uint32_t vsync_count,
91 uint32_t dvrPoseClientGetVsyncCount(DvrPoseClient* client);
    [all...]
  /external/libvncserver/libvncclient/
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/autotest/client/site_tests/dummy_Pass/
dummy_Pass.py 5 from autotest_lib.client.bin import test
6 from autotest_lib.client.common_lib import error
  /external/autotest/client/tests/aborttest/
aborttest.py 1 from autotest_lib.client.common_lib import error
2 from autotest_lib.client.bin import test
  /external/autotest/client/tests/error_test_bug/
error_test_bug.py 1 from autotest_lib.client.common_lib import error
2 from autotest_lib.client.bin import test
  /external/autotest/client/tests/error_test_error/
error_test_error.py 1 from autotest_lib.client.common_lib import error
2 from autotest_lib.client.bin import test
  /external/autotest/client/tests/error_test_fail/
error_test_fail.py 1 from autotest_lib.client.common_lib import error
2 from autotest_lib.client.bin import test
  /external/autotest/client/tests/error_test_na/
error_test_na.py 1 from autotest_lib.client.common_lib import error
2 from autotest_lib.client.bin import test
  /external/autotest/site_utils/lxc/container_pool/
__init__.py 7 from client import Client
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClientPool.java 17 package net.oauth.client.httpclient4;
34 public org.apache.http.client.HttpClient getHttpClient(URL server);
  /external/valgrind/memcheck/tests/
client-msg.stderr.exp 3 by 0x........: baz (client-msg.c:5)
4 by 0x........: bar (client-msg.c:10)
5 by 0x........: foo (client-msg.c:15)
6 by 0x........: main (client-msg.c:20)
  /external/valgrind/memcheck/tests/solaris/
door_data.stdout.exp 1 SERVER: Hello from client
2 CLIENT: Hello from server
  /frameworks/base/core/tests/coretests/src/android/net/http/
DefaultHttpClientProxyTest.java 19 import org.apache.http.client.HttpClient;
20 import org.apache.http.impl.client.DefaultHttpClient;
  /frameworks/native/libs/vr/libdvr/
dvr_performance.cpp 12 if (auto client = PerformanceClient::Create(&error))
13 return client->SetSchedulerPolicy(task_id, scheduler_policy);
  /external/adhd/cras/src/libcras/
cras_helpers.h 12 /* Creates and connects a client to the running server asynchronously.
19 * client - Filled with a pointer to the new client.
25 int cras_helper_create_connect_async(struct cras_client **client,
29 /* Creates and connects a client to the running server.
34 * client - Filled with a pointer to the new client.
38 int cras_helper_create_connect(struct cras_client **client);
42 * client - The client to add the stream to (from cras_client_create)
    [all...]
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/
AndroidInternal.java 34 OkHttpClient client = okUrlFactory.client(); local
40 client.setCache(okCacheContainer.getCache());
42 client.setInternalCache(responseCache != null ? new CacheAdapter(responseCache) : null);

Completed in 634 milliseconds

12 3 4 5 6 7 8 91011>>