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

1 2 3 4 5 6

  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.h 35 class Client {
37 virtual ~Client() { }
42 ResponsivenessTimer(ResponsivenessTimer::Client*);
55 ResponsivenessTimer::Client* m_client;
WebPopupMenuProxy.h 46 class Client {
48 virtual ~Client()
68 WebPopupMenuProxy(Client* client)
69 : m_client(client)
73 Client* m_client;
  /external/webkit/Source/WebKit2/Shared/mac/
CoreAnimationRenderer.h 42 class Client {
44 virtual ~Client() { }
48 static PassRefPtr<CoreAnimationRenderer> create(Client*, CGLContextObj, CALayer *);
57 CoreAnimationRenderer(Client*, CGLContextObj, CALayer *);
62 Client* m_client;
  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ThreadLauncher.h 42 class Client {
44 virtual ~Client() { }
48 static PassRefPtr<ThreadLauncher> create(Client* client)
50 return adoptRef(new ThreadLauncher(client));
58 explicit ThreadLauncher(Client*);
66 Client* m_client;
ProcessLauncher.h 42 class Client {
44 virtual ~Client() { }
63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions)
65 return adoptRef(new ProcessLauncher(client, launchOptions));
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
86 Client* m_client;
  /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...]
  /external/chromium/chrome/browser/
utility_process_host.cc 20 UtilityProcessHost::UtilityProcessHost(Client* client,
23 client_(client),
187 NewRunnableMethod(client_.get(), &Client::OnMessageReceived, message));
194 NewRunnableMethod(client_.get(), &Client::OnProcessCrashed, exit_code));
201 bool UtilityProcessHost::Client::OnMessageReceived(
206 Client::OnUnpackExtensionSucceeded)
208 Client::OnUnpackExtensionFailed)
210 Client::OnUnpackWebResourceSucceeded)
212 Client::OnUnpackWebResourceFailed
    [all...]
utility_process_host.h 37 class Client : public base::RefCountedThreadSafe<Client> {
39 Client() {}
107 friend class base::RefCountedThreadSafe<Client>;
109 virtual ~Client() {}
116 DISALLOW_COPY_AND_ASSIGN(Client);
119 UtilityProcessHost(Client* client, BrowserThread::ID client_thread_id);
158 // to the client via OnJSONParseSucceeded or OnJSONParseFailed.
184 // A pointer to our client interface, who will be informed of progress
    [all...]
  /external/chromium/chrome/browser/extensions/
pack_extension_job.h 23 class Client {
30 virtual ~Client() {}
33 PackExtensionJob(Client* client,
40 // The client should call this when it is destroyed to prevent
61 Client* client_;
  /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...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
PageOverlay.h 45 class Client {
47 virtual ~Client() { }
59 static PassRefPtr<PageOverlay> create(Client*);
75 explicit PageOverlay(Client*);
86 Client* m_client;
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPopupMenuProxyMac.h 41 static PassRefPtr<WebPopupMenuProxyMac> create(WKView *webView, WebPopupMenuProxy::Client* client)
43 return adoptRef(new WebPopupMenuProxyMac(webView, client));
51 WebPopupMenuProxyMac(WKView *, WebPopupMenuProxy::Client*);
  /frameworks/base/services/camera/libcameraservice/
CameraService.cpp 155 sp<Client> client; local
172 client = mClient[cameraId].promote();
173 if (client != 0) {
174 if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) {
175 LOG1("CameraService::connect X (pid %d) (the same client)",
177 return client;
179 LOGW("CameraService::connect X (pid %d) rejected (existing client).",
208 client = new Client(this, cameraClient, hardware, cameraId, info.facing, callingPid)
221 sp<Client> client; local
930 sp<Client> client = gCameraService->getClientById((int) user); local
978 sp<Client> client = getClientFromCookie(user); local
997 sp<Client> client = getClientFromCookie(user); local
1030 sp<Client> client = getClientFromCookie(user); local
1272 sp<Client> client = mClient[i].promote(); local
    [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...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.h 45 class Client;
67 Client* client; member in struct:SafeBrowsingService::UnsafeResource
81 Client* client; member in struct:SafeBrowsingService::SafeBrowsingCheck
101 class Client {
103 virtual ~Client() {}
154 // Otherwise it returns false, and "client" is called asynchronously with the
156 virtual bool CheckBrowseUrl(const GURL& url, Client* client);
278 Client* client; member in struct:SafeBrowsingService::QueuedCheck
    [all...]
  /frameworks/base/media/libstagefright/
MediaSourceSplitter.cpp 45 sp<MediaSource> client = new Client(this, mNumberOfClients++); local
48 return client;
54 LOGV("start client (%d)", clientId);
62 LOGV("Starting real source from client (%d)", clientId);
88 LOGV("stop client (%d)", clientId);
93 LOGV("Stopping real source from client (%d)", clientId);
104 // client would have wanted to read from this buffer. (i.e. it has not yet
117 LOGV("getFormat client (%d)", clientId);
127 LOGV("read client (%d)", clientId)
    [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 {

Completed in 1121 milliseconds

1 2 3 4 5 6