HomeSort by relevance Sort by last modified time
    Searched defs:client (Results 101 - 125 of 1756) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/text/style/
AccessibilityClickableSpan.java 142 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance(); local
143 client.performAccessibilityAction(mConnectionId, mWindowId, mSourceNodeId,
  /frameworks/base/services/core/java/com/android/server/am/
ContentProviderConnection.java 24 * Represents a link between a content provider and client.
28 public final ProcessRecord client; field in class:ContentProviderConnection
32 // The client of this connection is currently waiting for the provider to appear.
44 client = _client;
75 sb.append(client.toShortString());
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSocketPair.java 29 * a pair of connected and handshaked client and server SSLSockets for
35 public final SSLSocket client; field in class:TestSSLSocketPair
39 SSLSocket client) {
42 this.client = client;
49 client.close();
65 * Create a new connected server/client socket pair within a
75 final SSLSocket client = (SSLSocket) local
92 client.setEnabledCipherSuites(clientCipherSuites);
94 client.startHandshake()
    [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLSessionTest.java 55 assertTrue(s.client.isValid());
64 assertTrue(s.client.getApplicationBufferSize() > 0);
74 assertNotNull(s.client.getCipherSuite());
75 assertEquals(s.server.getCipherSuite(), s.client.getCipherSuite());
96 long cTime = s.client.getCreationTime() / 1000;
108 assertNotNull(s.client.getId());
114 assertTrue(Arrays.equals(s.server.getId(), s.client.getId()));
116 assertEquals(32, s.client.getId().length);
125 assertTrue(s.client.getLastAccessedTime() > 0);
127 + "s.client.getLastAccessedTime()=" + s.client.getLastAccessedTime()
222 SSLSocket client = (SSLSocket) context.clientContext.getSocketFactory().createSocket( local
450 final SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket( local
    [all...]
  /cts/suite/audio_quality/executable/src/
main.cpp 115 ClientInterface* client = factory.createClientInterface(); local
116 if (client == NULL) {
120 if (!client->init(Settings::Instance()->getSetting(Settings::EADB))) {
125 if (!client->getAudio()->getDeviceInfo(deviceInfo)) {
129 delete client; // release so that it can be used in tests
  /cts/suite/audio_quality/test/
ClientInterfaceTest.cpp 53 ClientImpl* client = reinterpret_cast<ClientImpl*>(mClient); local
54 android::sp<RemoteAudio>& audio(client->getAudio());
62 ClientImpl* client = reinterpret_cast<ClientImpl*>(mClient); local
63 android::sp<RemoteAudio>& audio(client->getAudio());
81 ClientImpl* client = reinterpret_cast<ClientImpl*>(mClient); local
82 android::sp<RemoteAudio>& audio(client->getAudio());
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/
UserTest.java 16 package com.example.android.samplesync.client;
18 import com.example.android.samplesync.client.User;
  /device/generic/goldfish/libqemu/
test_host_2.c 91 int sock, client; local
102 client = TFR(accept(sock, NULL, NULL));
103 if (client < 0) {
107 printf("Client connected!\n");
114 ret = TFR(read(client, buff, sizeof(buff)));
116 fprintf(stderr, "Client read error: %s\n", strerror(errno));
117 socket_close(client);
124 printf("Client closed connection\n");
125 socket_close(client);
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd_test.cpp 44 SharedFD client = SharedFD::SocketSeqPacketClient(path.c_str()); local
50 ssize_t rval = client->SendMsgAndFDs(hdr, 0, fds);
51 printf("SendMsg sent %zd (%s)\n", rval, client->StrError());
  /device/google/cuttlefish_common/common/libs/net/
network_interface_manager.cpp 65 auto client = nl_factory->New(NETLINK_ROUTE); local
66 if (client) {
67 mgr.reset(new NetworkInterfaceManager(std::move(client)));
  /device/google/cuttlefish_common/common/libs/tcp_socket/
tcp_socket.cpp 76 LOG(INFO) << "Couldn't write to client: " << strerror(errno);
100 SharedFD client = SharedFD::Accept(*fd_); local
101 if (!client->IsOpen()) {
104 return ClientSocket{client};
  /external/adhd/cras/examples/
cplay.c 22 static int put_samples(struct cras_client *client,
42 static int stream_error(struct cras_client *client,
54 struct cras_client *client; local
73 rc = cras_helper_create_connect(&client);
75 fprintf(stderr, "Couldn't create client.\n");
84 rc = cras_helper_add_stream_simple(client, CRAS_STREAM_OUTPUT, data,
100 cras_client_destroy(client);
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/entity/UrlEncodedFormEntity.java $
31 package org.apache.http.client.entity;
36 import org.apache.http.client.utils.URLEncodedUtils;
  /external/apache-http/src/org/apache/http/client/methods/
HttpDelete.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpDelete.java $
32 package org.apache.http.client.methods;
43 * identified by the Request-URI. [...] The client cannot
HttpEntityEnclosingRequestBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.java $
32 package org.apache.http.client.methods;
37 import org.apache.http.client.utils.CloneUtils;
HttpGet.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpGet.java $
32 package org.apache.http.client.methods;
HttpHead.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpHead.java $
32 package org.apache.http.client.methods;
HttpPost.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpPost.java $
32 package org.apache.http.client.methods;
HttpPut.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpPut.java $
32 package org.apache.http.client.methods;
HttpTrace.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpTrace.java $
32 package org.apache.http.client.methods;
44 * SHOULD reflect the message received back to the client as the
  /external/apache-http/src/org/apache/http/client/params/
CookiePolicy.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/CookiePolicy.java $
32 package org.apache.http.client.params;
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContext.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/ClientContext.java $
32 package org.apache.http.client.protocol;
37 * attribute names for client.
ClientContextConfigurer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/ClientContextConfigurer.java $
32 package org.apache.http.client.protocol;
37 import org.apache.http.client.CookieStore;
38 import org.apache.http.client.CredentialsProvider;
RequestDefaultHeaders.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestDefaultHeaders.java $
32 package org.apache.http.client.protocol;
41 import org.apache.http.client.params.ClientPNames;
RequestProxyAuthentication.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestProxyAuthentication.java $
32 package org.apache.http.client.protocol;

Completed in 701 milliseconds

1 2 3 45 6 7 8 91011>>