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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
JDWPClassDataRetriever.java 19 import com.android.ddmlib.Client;
36 private final Client client; field in class:JDWPClassDataRetriever
42 public JDWPClassDataRetriever(Client client) {
43 this.client = client;
53 public Map<String, String> getClassData(Client client) {
54 return new JDWPClassDataRetriever(client).retrieve()
    [all...]
  /frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
service_utility.h 6 #include <pdx/client.h>
47 *error = Client::error();
  /frameworks/native/services/surfaceflinger/
LayerDim.cpp 38 LayerDim::LayerDim(SurfaceFlinger* flinger, const sp<Client>& client,
40 : Layer(flinger, client, name, w, h, flags) {
SurfaceFlinger.h 83 class Client;
232 friend class Client;
396 uint32_t setClientStateLocked(const sp<Client>& client, const layer_state_t& s);
402 status_t createLayer(const String8& name, const sp<Client>& client,
407 status_t createNormalLayer(const sp<Client>& client, const String8& name,
412 status_t createDimLayer(const sp<Client>& client, const String8& name
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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.
  /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/cmd/vet/testdata/
httpresponse.go 33 client := http.DefaultClient
34 res, err := client.Get("http://foo.com")
42 client := http.DefaultClient
43 resp, err := client.Get("http://foo.com")
51 client := http.Client{}
52 resp, err := client.Get("http://foo.com")
60 client := http.DefaultClient
66 resp, err := client.Do(req)
74 var client http.Clien
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
httpresponse.go 33 client := http.DefaultClient
34 res, err := client.Get("http://foo.com")
42 client := http.DefaultClient
43 resp, err := client.Get("http://foo.com")
51 client := http.Client{}
52 resp, err := client.Get("http://foo.com")
60 client := http.DefaultClient
66 resp, err := client.Do(req)
74 var client http.Clien
    [all...]
  /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):
  /prebuilts/go/darwin-x86/src/cmd/vet/
httpresponse.go 24 if typ := importType("net/http", "Client"); typ != nil {
27 // if http.Response or http.Client are not defined don't register this check.
74 // either a function of the net/http package or a method of http.Client that
101 return true // method on http.Client.
104 return ok && types.Identical(ptr.Elem(), httpClientType) // method on *http.Client.
  /prebuilts/go/linux-x86/src/cmd/vet/
httpresponse.go 24 if typ := importType("net/http", "Client"); typ != nil {
27 // if http.Response or http.Client are not defined don't register this check.
74 // either a function of the net/http package or a method of http.Client that
101 return true // method on http.Client.
104 return ok && types.Identical(ptr.Elem(), httpClientType) // method on *http.Client.
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 22 import com.android.ddmlib.Client;
98 private Client mCurrentClient;
108 * with {@link IDevice} and {@link Client} selectionchanges.
113 * Sent when a new {@link Client} is selected.
114 * @param selectedClient The selected client. If null, no clients are selected.
116 public void selectionChanged(Client selectedClient);
687 Client[] clients = device.getClients();
689 for (Client client : clients) {
690 if (client == mCurrentClient)
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/
Main.java 19 import com.android.ddmlib.Client;
74 private DefaultListModel<Client> clientListModel;
120 clientListModel = new DefaultListModel<Client>();
123 clientUtils = new ClientUtils(DEFAULT_TIMEOUT_MILLIS); // Client utils with 10s timeout.
173 ui.client(it.next());
244 public DefaultListModel<Client> getClientListModel() {
332 Client client = clientUtils.findClient(device, packageName, -1); local
333 if (client == null) {
334 throw new RuntimeException("Could not find client...")
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
client.go 110 // NewClient returns a new rpc.Client to handle requests to the
112 func NewClient(conn io.ReadWriteCloser) *rpc.Client {
117 func Dial(network, address string) (*rpc.Client, error) {
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
client.go 110 // NewClient returns a new rpc.Client to handle requests to the
112 func NewClient(conn io.ReadWriteCloser) *rpc.Client {
117 func Dial(network, address string) (*rpc.Client, error) {
  /frameworks/av/services/audioflinger/
TrackBase.h 58 const sp<Client>& client,
177 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const

Completed in 916 milliseconds

1 2 34 5 6 7 8 91011>>