HomeSort by relevance Sort by last modified time
    Searched defs:Client (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /frameworks/native/services/surfaceflinger/
Client.h 38 class Client : public BnSurfaceComposerClient
41 Client(const sp<SurfaceFlinger>& flinger);
42 ~Client();
Client.cpp 25 #include "Client.h"
37 Client::Client(const sp<SurfaceFlinger>& flinger)
42 Client::~Client()
53 status_t Client::initCheck() const {
57 void Client::attachLayer(const sp<IBinder>& handle, const sp<Layer>& layer)
63 void Client::detachLayer(const Layer* layer)
75 sp<Layer> Client::getLayerUser(const sp<IBinder>& handle) const
88 status_t Client::onTransact
122 Client* client; member in class:android::MessageCreateLayer
    [all...]
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 17 package com.example.android.platform_library.client;
28 public class Client extends Activity {
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUCertType.java 5 Client,
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /external/autotest/client/common_lib/feedback/
tester_feedback_client.py 5 """Feedback client implementation for interacting with a human tester."""
10 from autotest_lib.client.common_lib import error
11 from autotest_lib.client.common_lib.feedback import client namespace
21 class Client(client.Client):
25 """Constructs the client object.
31 super(Client, self).__init__()
56 Initializes an XML-RPC proxy and registers the client at the remote end
    [all...]
client.py 7 from autotest_lib.client.common_lib import error
52 # Feedback client definition.
54 class Client(object):
63 """Ensure that the client was initialized and not finalized."""
65 raise error.TestError('Client was not initialized')
67 raise error.TestError('Client was already finalized')
91 raise error.TestError('Client was already initialized')
93 raise error.TestError('Client was already finalized')
100 """Implementation of feedback client initialization.
131 This method should be called once when done using the client
    [all...]
  /external/boringssl/src/tool/
client.cc 86 "Private-key file to use (default is no client certificate)",
135 bool Client(const std::vector<std::string> &args) {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/
mock.py 4 client, for a specific API and version. Then, when the client is created, it
247 class Client(object):
249 """Mock an apitools client."""
260 real_client: apitools Client, The client to make requests
278 """Stub out the client class with mocked services."""
279 client = self.__real_client or self.__client_class(
288 service = service_class(client)
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 1 //===--- FixItRewriter.h - Fix-It Rewriter Diagnostic Client ----*- C++ -*-===//
10 // This is a diagnostic client adaptor that performs rewrites as
12 // then forwards any diagnostics to the adapted diagnostic client.
70 /// \brief The diagnostic client that performs the actual formatting
72 DiagnosticConsumer *Client;
126 /// \brief Emit a diagnostic via the adapted diagnostic client.
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithDependencyInjection.java 49 public static class Client {
53 public Client(Service service) {
66 public static Client getInstance() {
68 return new Client(service);
74 Client client = new Client(mock); local
75 client.go();
ClientServiceWithFactories.java 53 public static class Client {
66 Client client = new Client(); local
67 client.go();
ClientServiceWithGuice.java 51 public static class Client {
56 public Client(Service service) {
67 Client client = new Client(mock); local
68 client.go();
88 Client client = injector.getInstance(Client.class); local
ClientServiceWithGuiceDefaults.java 47 public static class Client {
52 public Client(Service service) {
63 Client client = new Client(mock); local
64 client.go();
84 Client client = injector.getProvider(Client.class).get(); local
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
RingtonePlayer.java 60 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
76 * Represents an active remote {@link Ringtone} client.
78 private class Client implements IBinder.DeathRecipient {
82 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) {
108 Client client;
110 client = mClients.get(token);
111 if (client == null) {
113 client = new Client(token, uri, user, aa)
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
L.java 30 private static final Client sSystemClient = new Client() {
41 private static Client sClient = sSystemClient;
43 public static void setClient(Client systemClient) {
126 public interface Client {
  /external/deqp/execserver/tools/
xsClient.cpp 21 * \brief ExecServer Client.
147 class Client
150 Client (const CommandLine& cmdLine);
151 ~Client (void);
160 Client::Client (const CommandLine& cmdLine)
165 Client::~Client (void)
169 void Client::run (void)
194 // Run client loop
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
sslproxy_test.py 30 class Client(object):
173 c = Client(self.cert_path, self.verify_cb, server.server_port, '')
178 c = Client(self.cert_path, self.verify_cb, server.server_port, 'foo.com')
181 c = Client(self.cert_path, self.verify_cb, server.server_port,
187 c = Client(self.wrong_cert_path, self.verify_cb, server.server_port,
  /external/clang/unittests/Sema/
ExternalSemaSourceTest.cpp 154 DiagnosticConsumer *Client = Diagnostics.getClient();
158 Client = Watchers[I]->Chain(Client);
159 Diagnostics.setClient(Client, false);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
reduction.py 47 from multiprocessing.connection import Client, Listener
155 conn = Client(address, authkey=current_process().authkey)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
reduction.py 47 from multiprocessing.connection import Client, Listener
155 conn = Client(address, authkey=current_process().authkey)

Completed in 250 milliseconds

1 2 3 4 5 6 7