HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 76 - 100 of 4928) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/guava/guava-gwt/src/com/google/common/
ForceGuavaCompilationEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/
GuavaTestsEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/base/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/cache/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/collect/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/escape/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/html/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/io/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/math/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/net/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/primitives/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/testing/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /external/guava/guava-gwt/test/com/google/common/xml/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
  /frameworks/native/services/surfaceflinger/tests/
Stress_test.cpp 31 sp<SurfaceComposerClient> client = new SurfaceComposerClient;
32 ASSERT_EQ(NO_ERROR, client->initCheck());
34 auto surf = client->createSurface(String8("t"), 100, 100,
37 client->destroySurface(surf->getHandle());
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DirectoryResult.java 33 ContentProviderClient client; field in class:DirectoryResult
38 if (client != null && doc.isInArchive()) {
39 ArchivesProvider.releaseArchive(client, doc.derivedUri);
42 client = null;
  /system/tools/aidl/tests/
aidl_test_client_nullables.h 28 namespace client { namespace in namespace:android::aidl::tests
32 } // namespace client
aidl_test_client_service_exceptions.h 27 namespace client { namespace in namespace:android::aidl::tests
32 } // namespace client
  /external/fio/
client.c 22 #include "client.h"
28 static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd);
29 static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd);
30 static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd);
31 static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd);
32 static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd);
33 static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd);
34 static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd);
77 static void fio_client_add_hash(struct fio_client *client)
79 int bucket = hash_long(client->fd, FIO_CLIENT_HASH_BITS)
165 struct fio_client *client; local
285 struct fio_client *client = cookie; local
307 struct fio_client *client; local
352 struct fio_client *client = cookie; local
378 struct fio_client *client; local
563 struct fio_client *client; local
657 struct fio_client *client; local
694 struct fio_client *client; local
815 struct fio_client *client; local
1778 struct fio_client *client; local
1807 struct fio_client *client; local
1897 struct fio_client *client; local
1940 struct fio_client *client; local
    [all...]
  /external/libvncserver/rfb/
rfbclient.h 47 (*(char *)&client->endianTest ? ((((s) & 0xff) << 8) | (((s) >> 8) & 0xff)) : (s))
50 (*(char *)&client->endianTest ? ((((l) & 0xff000000) >> 24) | \
56 (*(char *)&client->endianTest ? ((((l) & 0xff00000000000000ULL) >> 56) | \
90 /** client data */
147 * client->HandleTextChat to a pointer to that function subsequent to your
149 * @param client The client which called the text chat handler
154 typedef void (*HandleTextChatProc)(struct _rfbClient* client, int value, char *text);
158 * Define a function with this prototype and set client->HandleXvpMsg to a
160 * @param client The client which called the XVP message handle
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
OkHttpClientTest.java 61 OkHttpClient client = new OkHttpClient(); local
62 assertEquals(10_000, client.getConnectTimeout());
63 assertEquals(10_000, client.getReadTimeout());
64 assertEquals(10_000, client.getWriteTimeout());
68 OkHttpClient client = new OkHttpClient(); local
70 client.setConnectTimeout(1, TimeUnit.NANOSECONDS);
74 client.setWriteTimeout(1, TimeUnit.NANOSECONDS);
78 client.setReadTimeout(1, TimeUnit.NANOSECONDS);
82 client.setConnectTimeout(365, TimeUnit.DAYS);
86 client.setWriteTimeout(365, TimeUnit.DAYS)
97 OkHttpClient client = new OkHttpClient().copyWithDefaults(); local
124 OkHttpClient client = new OkHttpClient().copyWithDefaults(); local
136 OkHttpClient client = new OkHttpClient().copyWithDefaults(); local
152 OkHttpClient client = new OkHttpClient().copyWithDefaults(); local
170 OkHttpClient client = new OkHttpClient(); local
188 OkHttpClient client = new OkHttpClient(); local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 17 package net.oauth.client.httpclient4;
23 import net.oauth.client.ExcerptInputStream;
27 import org.apache.http.client.HttpClient;
28 import org.apache.http.client.methods.HttpDelete;
29 import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
30 import org.apache.http.client.methods.HttpGet;
31 import org.apache.http.client.methods.HttpPost;
32 import org.apache.http.client.methods.HttpPut;
33 import org.apache.http.client.methods.HttpRequestBase;
34 import org.apache.http.client.params.ClientPNames
88 HttpClient client = clientPool.getHttpClient(new URL(httpRequest.getURI().toString())); local
107 HttpClient client = new DefaultHttpClient(); local
117 private final HttpClient client; field in class:HttpClient4.SingleClient
    [all...]
  /external/webrtc/webrtc/base/
testclient_unittest.cc 26 TestClient client(new AsyncUDPSocket(socket));
27 SocketAddress addr = client.address(), from;
28 EXPECT_EQ(3, client.SendTo("foo", 3, addr));
29 EXPECT_TRUE(client.CheckNextPacket("foo", 3, &from));
31 EXPECT_TRUE(client.CheckNoPacket());
44 TestClient client(tcp_socket);
45 SocketAddress addr = client.address(), from;
46 EXPECT_TRUE(client.CheckConnected());
47 EXPECT_EQ(3, client.Send("foo", 3));
48 EXPECT_TRUE(client.CheckNextPacket("foo", 3, &from))
    [all...]
  /system/core/logd/
FlushCommand.cpp 41 // runSocketCommand is called once for every open client on the
43 // client tracking and log region locks LastLogTimes list of
44 // LogTimeEntrys, and spawn a transitory per-client thread to
50 void FlushCommand::runSocketCommand(SocketClient* client) {
58 if (entry->mClient == client) {
90 entry = new LogTimeEntry(mReader, client, mNonBlock, mTail, mLogMask,
95 client->incRef();
97 // release client and entry reference counts once done
102 bool FlushCommand::hasReadLogs(SocketClient* client) {
103 return clientHasLogCredentials(client);
    [all...]
  /external/libvncserver/libvncclient/
zrle.c 79 static int HandleZRLETile(rfbClient* client,
84 HandleZRLE (rfbClient* client, int rx, int ry, int rw, int rh)
98 if ( client->raw_buffer_size < min_buffer_size) {
100 if ( client->raw_buffer != NULL ) {
102 free( client->raw_buffer );
106 client->raw_buffer_size = min_buffer_size;
107 client->raw_buffer = (char*) malloc( client->raw_buffer_size );
111 if (!ReadFromRFBServer(client, (char *)&header, sz_rfbZRLEHeader))
117 client->decompStream.next_in = ( Bytef * )client->buffer
    [all...]
  /hardware/qcom/gps/msm8998/gnss/
location_gnss.cpp 38 static void addClient(LocationAPI* client, const LocationCallbacks& callbacks);
39 static void removeClient(LocationAPI* client);
40 static void requestCapabilities(LocationAPI* client);
42 static uint32_t startTracking(LocationAPI* client, LocationOptions& options);
43 static void updateTrackingOptions(LocationAPI* client, uint32_t id, LocationOptions& options);
44 static void stopTracking(LocationAPI* client, uint32_t id);
46 static void gnssNiResponse(LocationAPI* client, uint32_t id, GnssNiResponse response);
112 static void addClient(LocationAPI* client, const LocationCallbacks& callbacks)
115 gGnssAdapter->addClientCommand(client, callbacks);
119 static void removeClient(LocationAPI* client)
    [all...]

Completed in 390 milliseconds

1 2 34 5 6 7 8 91011>>