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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/
ClassDataRetriever.java 19 import com.android.ddmlib.Client;
24 * Retrieve a class-to-classloader map for loaded classes from the client.
28 public Map<String, String> getClassData(Client 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
IClientAction.java 19 import com.android.ddmlib.Client;
25 void selectedClientChanged(Client c);
  /external/libmojo/mojo/common/
data_pipe_drainer.h 21 class Client {
27 virtual ~Client() {}
30 DataPipeDrainer(Client*, mojo::ScopedDataPipeConsumerHandle source);
37 Client* 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();
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
ClientServiceWithFactories.java 53 public static class Client {
66 Client client = new Client(); local
67 client.go();
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUCertType.java 5 Client,
ClientKeyManager.java 29 private static final String sTempAlias = "client-alias";
35 mAliasMap.put(OSUCertType.Client, PlatformAdapter.CERT_CLT_CERT_ALIAS + homeSP.getFQDN());
42 List<X509Certificate> clientCerts = certs.get(OSUCertType.Client);
48 mTempKeys.put(OSUCertType.Client, certArray);
55 return mAliasMap.get(OSUCertType.Client);
64 String alias = mAliasMap.get(OSUCertType.Client);
84 if (!mAliasMap.get(OSUCertType.Client).equals(alias)) {
96 return (X509Certificate[]) mTempKeys.get(OSUCertType.Client);
106 if (!mAliasMap.get(OSUCertType.Client).equals(alias)) {
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ReloadListAction.java 19 import com.android.ddmlib.Client;
31 private final DefaultListModel<Client> clientListModel;
34 DefaultListModel<Client> clientListModel) {
42 Client[] clients = clientUtils.findAllClients(device);
47 for (Client c : clients) {
52 private static class ClientComparator implements Comparator<Client> {
55 public int compare(Client o1, Client o2) {
ScanPackageAction.java 19 import com.android.ddmlib.Client;
45 Client client = Main.getUI().getSelectedClient(); local
46 if (client != null) {
47 work(client);
49 Client[] clients = clientUtils.findAllClients(device);
61 work(ret.client);
70 private void work(Client c) {
85 private Client client; field in class:ScanPackageAction.ClientWrapper
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/
ClientUtils.java 21 import com.android.ddmlib.Client;
25 * Helper class for common communication with a Client (the ddms name for a running application).
45 public Client findClient(IDevice device, String processName, int processPid) {
50 * Find the client with the given process name or process id. The name takes precedence over
57 * @return The client, if found. Otherwise null.
59 public Client findClient(IDevice device, String processName, int processPid, int timeout) {
67 public Client[] findAllClients(IDevice device) {
79 public Client[] findAllClients(IDevice device, int timeout) {
93 private Client result;
103 public Client get()
    [all...]
  /frameworks/native/services/surfaceflinger/
Client.cpp 25 #include "Client.h"
37 Client::Client(const sp<SurfaceFlinger>& flinger)
38 : Client(flinger, nullptr)
42 Client::Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer)
48 Client::~Client()
59 void Client::setParentLayer(const sp<Layer>& parentLayer) {
64 sp<Layer> Client::getParentLayer(bool* outParentDied) const
164 Client* client; member in class:android::MessageCreateLayer
    [all...]
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();
  /frameworks/native/libs/vr/libpdx/
client.cpp 1 #include "pdx/client.h"
10 void Client::EnableAutoReconnect(int64_t reconnect_timeout_ms) {
17 void Client::DisableAutoReconnect() { auto_reconnect_enabled_ = false; }
19 bool Client::IsConnected() const { return channel_.get() != nullptr; }
21 Status<void> Client::CheckReconnect() {
50 bool Client::NeedToDisconnectChannel(int error) const {
54 void Client::CheckDisconnect(int error) {
59 Client::Client(std::unique_ptr<ClientChannel> channel)
62 Client::Client(std::unique_ptr<ClientChannelFactory> channel_factory
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/ui/
IUI.java 3 import com.android.ddmlib.Client;
16 void prepare(ListModel<Client> clientListModel, TableModel dataTableModel,
23 Client getSelectedClient();
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /external/pdfium/xfa/fwl/
fwl_widgethit.h 12 Client,
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
GeneralHprofDumpHandler.java 19 import com.android.ddmlib.Client;
48 public void onEndFailure(Client arg0, String arg1) {
56 public void onSuccess(String arg0, Client arg1) {
64 public void onSuccess(byte[] arg0, Client arg1) {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
HttpUploader.java 25 import com.sun.jersey.api.client.Client;
38 super(stdout, gson, Client.create(), config.getResultProcessorConfig(HttpUploader.class));
  /external/mdnsresponder/mDNSPosix/
Makefile 250 # libdns_sd target builds the client library
252 @echo "Client library done"
451 @echo "Embedded Standalone Client done"
468 $(BUILDDIR)/mDNSClientPosix: $(APPOBJ) $(OBJDIR)/Client.c.o
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 19 import com.android.ddmlib.Client;
29 * A Workbench {@link ViewPart} that requires {@link Device}/{@link Client} selection notifications
51 * Sent when a new {@link Client} is selected.
52 * @param selectedClient The selected client.
57 public final void selectionChanged(Client selectedClient) {
  /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/v4l2_codec2/vda/
video_decode_accelerator.h 55 // to the client via PictureReady(), even if the client does not return
56 // any of them via ReusePictureBuffer(). The client is only required to
61 // client must return PictureBuffers to be sure that new frames will be
70 // indicates that the client supports it as well. Refer to
134 // Whether the client supports deferred initialization.
142 // The list of picture buffer formats that the client knows how to use. An
159 class Client {
161 // Notify the client that deferred initialization has completed successfully
164 // client (see Config::is_deferred_initialization_allowed), and the initia
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>