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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/services/surfaceflinger/
Client.h 38 class Client : public BnSurfaceComposerClient
41 explicit Client(const sp<SurfaceFlinger>& flinger);
42 Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer);
43 ~Client();
  /external/libmojo/mojo/common/
data_pipe_drainer.h 21 class Client {
27 virtual ~Client() {}
30 DataPipeDrainer(Client*, mojo::ScopedDataPipeConsumerHandle source);
37 Client* client_;
  /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/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
21 class Client(client.Client):
25 """Constructs the client object.
31 super(Client, self).__init__()
58 Initializes an XML-RPC proxy and registers the client at the remote end
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /external/python/cpython2/Lib/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUCertType.java 5 Client,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackSeekUi.java 22 * {@link #setPlaybackSeekUiClient(Client)} in the interface. Client (PlaybackGlue) registers
23 * itself as a Client to receive events emitted by PlaybackSeekUi and provide data to the
29 * Client (e.g. PlaybackGlue) to register on PlaybackSeekUi so that it can interact
30 * with Seeking UI. For example client(PlaybackGlue) will pause media when PlaybackSeekUi emits
33 class Client {
36 * Called by PlaybackSeekUi to query client if seek is allowed.
44 * Event for start seeking. Client will typically pause media and save the current position
52 * after {@link #isSeekEnabled()} returns true. If client does not provide a
53 * {@link PlaybackSeekDataProvider}, client may directly seek media i
    [all...]
  /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/go/darwin-x86/src/crypto/tls/
tls.go 35 // Client returns a new TLS client side connection
39 func Client(conn net.Conn, config *Config) *Conn {
143 conn := Client(rawConn, config)
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 35 // Client returns a new TLS client side connection
39 func Client(conn net.Conn, config *Config) *Conn {
143 conn := Client(rawConn, config)
  /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/boringssl/src/ssl/test/runner/
tls.go 34 // Client returns a new TLS client side connection
38 func Client(conn net.Conn, config *Config) *Conn {
145 conn := Client(rawConn, config)
  /external/python/cpython2/PC/os2emx/
pythonpm.c 56 HWND Client;
74 &Client);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
client.py 1 """RPC Client module."""
14 class Client:
16 """RPC Client class. No need to derive a class -- it's fully generic."""
132 class SecureClient(Client, Security):
150 """Helper class for Client -- each instance serves as a method of the client."""
152 def __init__(self, client, name):
153 self._client = client
  /external/autotest/server/brillo/feedback/
closed_loop_audio_client.py 12 from autotest_lib.client.common_lib import error
13 from autotest_lib.client.common_lib.feedback import client
48 class Client(client.Client):
59 """Construct the client library."""
60 super(Client, self).__init__()
101 if query_id == client.QUERY_AUDIO_PLAYBACK_SILENT:
103 elif query_id == client.QUERY_AUDIO_PLAYBACK_AUDIBLE
    [all...]
  /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
  /external/pdfium/xfa/fwl/
fwl_widgethit.h 12 Client,
  /external/python/cpython2/Demo/pdist/
client.py 1 """RPC Client module."""
14 class Client:
16 """RPC Client class. No need to derive a class -- it's fully generic."""
132 class SecureClient(Client, Security):
150 """Helper class for Client -- each instance serves as a method of the client."""
152 def __init__(self, client, name):
153 self._client = client

Completed in 1326 milliseconds

1 2 3 4 5 6 7 8 91011>>