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

1 2 3

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SelectionDependentPanel.java 19 import com.android.ddmlib.Client;
23 * A Panel that requires {@link Device}/{@link Client} selection notifications.
27 private Client mCurrentClient = null;
38 * Returns the current {@link Client}.
39 * @return the current client or null if none are selected.
41 protected final Client getCurrentClient() {
57 * Sent when a new client is selected.
58 * @param selectedClient the selected client.
60 public final void clientSelected(Client selectedClient) {
74 * Sent when a new client is selected. The new client can be accesse
    [all...]
DevicePanel.java 20 import com.android.ddmlib.Client;
84 private Client mCurrentClient;
108 * and second level elements are {@link Client} object.
119 if (element instanceof Client) {
120 return ((Client)element).getDevice();
152 * labels and images for {@link IDevice} and {@link Client} objects.
164 } else if (element instanceof Client) {
165 Client client = (Client)element local
233 Client client = (Client)element; local
407 Client client = mCurrentClient; local
727 Client client = null; local
    [all...]
InfoPanel.java 19 import com.android.ddmlib.Client;
31 * Display client info in a two-column format.
89 * Sent when an existing client information changed.
92 * @param client the updated client.
94 * any of the following values: {@link Client#CHANGE_PORT}, {@link Client#CHANGE_NAME}
95 * {@link Client#CHANGE_DEBUGGER_STATUS}, {@link Client#CHANGE_THREAD_MODE},
96 * {@link Client#CHANGE_THREAD_DATA}, {@link Client#CHANGE_HEAP_MODE}
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleExit.java 35 * Register for the packets we expect to get from the client.
40 * Client is ready.
43 public void clientReady(Client client) throws IOException {}
46 * Client went away.
49 public void clientDisconnected(Client client) {}
55 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
56 handleUnknownChunk(client, type, data, isReply, msgId)
    [all...]
HandleAppName.java 35 * Register for the packets we expect to get from the client.
42 * Client is ready.
45 public void clientReady(Client client) throws IOException {}
48 * Client went away.
51 public void clientDisconnected(Client client) {}
57 public void handleChunk(Client client, int type, ByteBuffer data,
64 handleAPNM(client, data)
    [all...]
HandleWait.java 25 * Handle the "wait" chunk (WAIT). These are sent up when the client is
38 * Register for the packets we expect to get from the client.
45 * Client is ready.
48 public void clientReady(Client client) throws IOException {}
51 * Client went away.
54 public void clientDisconnected(Client client) {}
60 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId)
    [all...]
HandleTest.java 37 * Register for the packets we expect to get from the client.
44 * Client is ready.
47 public void clientReady(Client client) throws IOException {}
50 * Client went away.
53 public void clientDisconnected(Client client) {}
59 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
64 handleTEST(client, data)
    [all...]
HandleProfiling.java 42 * Register for the packets we expect to get from the client.
51 * Client is ready.
54 public void clientReady(Client client) throws IOException {}
57 * Client went away.
60 public void clientDisconnected(Client client) {}
66 public void handleChunk(Client client, int type, ByteBuffer data,
72 handleMPRE(client, data)
    [all...]
HandleHello.java 35 * Register for the packets we expect to get from the client.
42 * Client is ready.
45 public void clientReady(Client client) throws IOException {
46 Log.d("ddm-hello", "Now ready: " + client);
50 * Client went away.
53 public void clientDisconnected(Client client) {
54 Log.d("ddm-hello", "Now disconnected: " + client);
59 * @param client
    [all...]
HandleThread.java 44 * Register for the packets we expect to get from the client.
55 * Client is ready.
58 public void clientReady(Client client) throws IOException {
59 Log.d("ddm-thread", "Now ready: " + client);
60 if (client.isThreadUpdateEnabled())
61 sendTHEN(client, true);
65 * Client went away.
68 public void clientDisconnected(Client client) {}
    [all...]
MonitorThread.java 56 private ArrayList<Client> mClientList;
72 * "Selected" client setup to answer debugging connection to the mNewDebugSelectedPort port.
74 private Client mSelectedClient = null;
84 mClientList = new ArrayList<Client>();
91 * Creates and return the singleton instance of the client monitor thread.
98 * Get singleton instance of the client monitor thread.
129 * Sets the client to accept debugger connection on the custom "Selected debug port".
130 * @param selectedClient the client. Can be null.
132 synchronized void setSelectedClient(Client selectedClient) {
138 Client oldClient = mSelectedClient
302 Client client = (Client)key.attachment(); local
547 Client client = dbg.getClient(); local
    [all...]
ChunkHandler.java 38 * Client is ready. The monitor thread calls this method on all
39 * handlers when the client is determined to be DDM-aware (usually
42 * The handler can use this opportunity to initialize client-side
44 * message to the client, this method can throw an IOException.
46 abstract void clientReady(Client client) throws IOException;
49 * Client has gone away. Can be used to clean up any resources
50 * associated with this client connection.
52 abstract void clientDisconnected(Client client);
    [all...]
Device.java 57 private final ArrayList<Client> mClients = new ArrayList<Client>();
63 * Socket for the connection monitoring client connection/disconnection.
224 public Client[] getClients() {
226 return mClients.toArray(new Client[mClients.size()]);
234 public Client getClient(String applicationName) {
236 for (Client c : mClients) {
315 for (Client c : mClients) {
336 void addClient(Client client) {
    [all...]
HandleHeap.java 61 * Register for the packets we expect to get from the client.
74 * Client is ready.
77 public void clientReady(Client client) throws IOException {
78 if (client.isHeapUpdateEnabled()) {
79 //sendHPSG(client, WHEN_GC, WHAT_MERGE);
80 sendHPIF(client, HPIF_WHEN_EVERY_GC);
85 * Client went away.
88 public void clientDisconnected(Client client) {}
    [all...]
  /frameworks/base/services/camera/libcameraservice/
CameraService.cpp 118 sp<Client> client; local
127 client = mClient[cameraId].promote();
128 if (client != 0) {
129 if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) {
130 LOG1("CameraService::connect X (pid %d) (the same client)",
132 return client;
134 LOGW("CameraService::connect X (pid %d) rejected (existing client).",
155 client = new Client(this, cameraClient, hardware, cameraId, info.facing
169 sp<Client> client; local
882 sp<Client> client = gCameraService->getClientById((int) user); local
930 sp<Client> client = getClientFromCookie(user); local
949 sp<Client> client = getClientFromCookie(user); local
982 sp<Client> client = getClientFromCookie(user); local
1262 sp<Client> client = mClient[i].promote(); local
    [all...]
CameraService.h 38 class Client;
51 virtual sp<Client> getClientById(int cameraId);
69 wp<Client> mClient[MAX_CAMERAS]; // protected by mServiceLock
72 // atomics to record whether the hardware is allocated to some client.
82 class Client : public BnCamera
87 virtual status_t connect(const sp<ICameraClient>& client);
107 Client(const sp<CameraService>& cameraService,
113 ~Client();
115 // return our camera client
140 // convert client from cooki
    [all...]
  /external/chromium/net/tools/fetch/
fetch_client.cc 48 // A network client
49 class Client {
51 Client(net::HttpTransactionFactory* factory, const std::string& url) :
55 connect_callback_(this, &Client::OnConnectComplete)),
57 read_callback_(this, &Client::OnReadComplete)) {
111 net::CompletionCallbackImpl<Client> connect_callback_;
112 net::CompletionCallbackImpl<Client> read_callback_;
155 Client** clients = new Client*[client_limit];
157 clients[i] = new Client(factory, url)
    [all...]
  /external/qemu/telephony/
simulator.c 31 } ClientRec, *Client;
33 static Client
36 Client client = calloc( sizeof(*client), 1 ); local
38 client->channel = channel;
39 return client;
43 client_free( Client client )
45 sys_channel_close( client->channel )
94 Client client = _client; local
168 Client client; local
    [all...]
test2.c 47 } ClientRec, *Client;
49 static Client
52 Client client = calloc( sizeof(*client), 1 ); local
54 client->channel = channel;
55 return client;
59 client_free( Client client )
61 sys_channel_close( client->channel )
106 Client client = _client; local
181 Client client; local
    [all...]
  /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.
56 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/ppp/pppd/plugins/radius/etc/
dictionary.compat 4 ATTRIBUTE Client-Id 4 ipaddr
5 ATTRIBUTE Client-Port-Id 5 integer
31 ATTRIBUTE Client-Port-DNIS 30 string
  /frameworks/base/services/surfaceflinger/
LayerDim.h 41 const sp<Client>& client);
SurfaceFlinger.h 47 class Client;
60 class Client : public BnSurfaceComposerClient
63 Client(const sp<SurfaceFlinger>& flinger);
64 ~Client();
99 // pointer to this client's control block
226 friend class Client;
235 sp<ISurface> createSurface(const sp<Client>& client,
242 const sp<Client>& client, DisplayID display
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/
MethodProfilingHandler.java 19 import com.android.ddmlib.Client;
52 public void onStartFailure(final Client client, final String message) {
56 client.getClientData().getClientDescription(),
60 public void onEndFailure(final Client client, final String message) {
64 client.getClientData().getClientDescription(),
68 public void onSuccess(final String remoteFilePath, final Client client) {
78 final IDevice device = client.getDevice()
    [all...]

Completed in 613 milliseconds

1 2 3