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

1 2 3 4 5 6 7

  /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/jmonkeyengine/engine/src/networking/com/jme3/network/
Client.java 43 public interface Client extends MessageConnection
46 * Starts the client allowing it to begin processing incoming
52 * Returns true if this client is fully connected to the
58 * Returns a unique ID for this client within the remote
59 * server or -1 if this client isn't fully connected to the
65 * Returns the 'game name' for servers to which this client should be able
67 * client will be turned away.
72 * Returns the game-specific version of the server this client should
108 public void addMessageListener( MessageListener<? super Client> listener );
114 public void addMessageListener( MessageListener<? super Client> listener, Class... classes );
    [all...]
ClientStateListener.java 38 * a Client.
46 * Called when the specified client is fully connected to
49 public void clientConnected( Client c );
52 * Called when the client has disconnected from the remote
53 * server. If info is null then the client shut down the
57 public void clientDisconnected( Client c, DisconnectInfo info );
NetworkClient.java 39 * A Client whose network connection information can
47 public interface NetworkClient extends Client
50 * Connects this client to the specified remote server and ports.
55 * Connects this client to the specified remote server and ports.
58 * @param port The remote TCP port on the server to which this client should
60 * @param remoteUdpPort The remote UDP port on the server to which this client should
63 * 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/av/services/camera/libcameraservice/
CameraService.cpp 145 sp<Client> client; local
162 client = mClient[cameraId].promote();
163 if (client != 0) {
164 if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) {
165 LOG1("CameraService::connect X (pid %d) (the same client)",
167 return client;
169 ALOGW("CameraService::connect X (pid %d) rejected (existing client).",
198 client = new Client(this, cameraClient, hardware, cameraId, info.facing, callingPid)
211 sp<Client> client; local
960 Client* client = gCameraService->getClientByIdUnsafe((int) user); local
1015 Client* client = getClientFromCookie(user); local
1039 Client* client = getClientFromCookie(user); local
1076 Client* client = getClientFromCookie(user); local
1318 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...]

Completed in 308 milliseconds

1 2 3 4 5 6 7