Searched refs:Client (Results 1 - 25 of 93) sorted by relevance

1234

/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DClient.java43 public interface Client extends MessageConnection interface in inherits:MessageConnection
108 public void addMessageListener( MessageListener<? super Client> listener );
114 public void addMessageListener( MessageListener<? super Client> listener, Class... classes );
120 public void removeMessageListener( MessageListener<? super Client> listener );
126 public void removeMessageListener( MessageListener<? super Client> listener, Class... classes );
135 public void addErrorListener( ErrorListener<? super Client> listener );
140 public void removeErrorListener( ErrorListener<? super Client> listener );
H A DClientStateListener.java38 * a Client.
49 public void clientConnected( Client c );
57 public void clientDisconnected( Client c, DisconnectInfo info );
H A DNetworkClient.java39 * A Client whose network connection information can
47 public interface NetworkClient extends Client
H A DNetwork.java118 * Creates a Client that communicates with the specified host and port
121 public static Client connectToServer( String host, int hostPort ) throws IOException
127 * Creates a Client that communicates with the specified host and separate TCP and UDP ports
130 public static Client connectToServer( String host, int hostPort, int remoteUdpPort ) throws IOException
136 * Creates a Client that communicates with the specified host and port
139 public static Client connectToServer( String gameName, int version,
146 * Creates a Client that communicates with the specified host and and separate TCP and UDP ports
161 public static Client connectToServer( String gameName, int version,
/external/webkit/Source/WebKit2/UIProcess/
H A DResponsivenessTimer.h35 class Client { class in class:WebKit::ResponsivenessTimer
37 virtual ~Client() { }
42 ResponsivenessTimer(ResponsivenessTimer::Client*);
55 ResponsivenessTimer::Client* m_client;
H A DWebPopupMenuProxy.h46 class Client { class in class:WebKit::WebPopupMenuProxy
48 virtual ~Client()
68 WebPopupMenuProxy(Client* client)
73 Client* m_client;
/external/webkit/Source/WebKit2/Shared/mac/
H A DCoreAnimationRenderer.h42 class Client { class in class:WebKit::CoreAnimationRenderer
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/
H A DThreadLauncher.h42 class Client { class in class:WebKit::ThreadLauncher
44 virtual ~Client() { }
48 static PassRefPtr<ThreadLauncher> create(Client* client)
58 explicit ThreadLauncher(Client*);
66 Client* m_client;
H A DProcessLauncher.h42 class Client { class in class:WebKit::ProcessLauncher
44 virtual ~Client() { }
63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions)
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
86 Client* m_client;
H A DThreadLauncher.cpp33 ThreadLauncher::ThreadLauncher(Client* client)
/external/chromium/chrome/browser/
H A Dutility_process_host.cc20 UtilityProcessHost::UtilityProcessHost(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)
214 Client::OnParseUpdateManifestSucceeded)
216 Client
[all...]
H A Dutility_process_host.h37 class Client : public base::RefCountedThreadSafe<Client> { class in class:UtilityProcessHost
39 Client() {} function in class:UtilityProcessHost::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);
185 scoped_refptr<Client> client_;
/external/chromium/chrome/browser/extensions/
H A Dpack_extension_job.h23 class Client { class in class:PackExtensionJob
30 virtual ~Client() {}
33 PackExtensionJob(Client* client,
61 Client* client_;
H A Dextensions_startup.h16 class ExtensionsStartupUtil : public PackExtensionJob::Client {
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DPageOverlay.h45 class Client { class in class:WebKit::PageOverlay
47 virtual ~Client() { }
59 static PassRefPtr<PageOverlay> create(Client*);
75 explicit PageOverlay(Client*);
86 Client* m_client;
/external/qemu/telephony/
H A Dsimulator.c31 } ClientRec, *Client; typedef in typeref:struct:__anon12073
33 static Client
36 Client client = calloc( sizeof(*client), 1 );
43 client_free( Client client )
51 client_append( Client client, const char* str, int len );
75 client_handle_line( Client client, const char* cmd )
94 Client client = _client;
144 client_append( Client client, const char* str, int len )
168 Client client;
H A Dtest2.c47 } ClientRec, *Client; typedef in typeref:struct:__anon12080
49 static Client
52 Client client = calloc( sizeof(*client), 1 );
59 client_free( Client client )
67 client_append( Client client, const char* str, int len );
70 client_handle_line( Client client, const char* cmd )
106 Client client = _client;
157 client_append( Client client, const char* str, int len )
181 Client client;
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_service.h45 class Client;
67 Client* client;
81 Client* client;
101 class Client { class in class:SafeBrowsingService
103 virtual ~Client() {}
156 virtual bool CheckBrowseUrl(const GURL& url, Client* client);
160 bool CheckDownloadUrl(const std::vector<GURL>& url_chain, Client* client);
164 virtual bool CheckDownloadHash(const std::string& full_hash, Client* client);
175 void CancelCheck(Client* client);
187 Client* clien
[all...]
/external/mdnsresponder/mDNSPosix/
H A DMakefile252 @echo "Client library done"
451 @echo "Embedded Standalone Client done"
468 $(BUILDDIR)/mDNSClientPosix: $(APPOBJ) $(OBJDIR)/Client.c.o
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebPopupMenuProxyMac.h41 static PassRefPtr<WebPopupMenuProxyMac> create(WKView *webView, WebPopupMenuProxy::Client* client)
51 WebPopupMenuProxyMac(WKView *, WebPopupMenuProxy::Client*);
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestMessages.java59 private static class ClientPingResponder implements MessageListener<Client> {
60 public void messageReceived(Client source, com.jme3.network.Message message) {
62 System.out.println("Client: Received pong message!");
74 Client client = Network.connectToServer("localhost", 5110);
80 System.out.println("Client: Sending ping message..");
H A DTestLatency.java43 private static Client client;
81 client.addMessageListener(new MessageListener<Client>(){
82 public void messageReceived(Client source, Message m) {
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat4 ATTRIBUTE Client-Id 4 ipaddr
5 ATTRIBUTE Client-Port-Id 5 integer
31 ATTRIBUTE Client-Port-DNIS 30 string
/external/chromium/net/tools/fetch/
H A Dfetch_client.cc54 class Client { class
56 Client(net::HttpTransactionFactory* factory, const std::string& url) : function in class:Client
60 connect_callback_(this, &Client::OnConnectComplete)),
62 read_callback_(this, &Client::OnReadComplete)) {
116 net::CompletionCallbackImpl<Client> connect_callback_;
117 net::CompletionCallbackImpl<Client> read_callback_;
173 Client** clients = new Client*[client_limit];
175 clients[i] = new Client(factory, url);
/external/webkit/Source/WebKit2/Shared/
H A DChildProcess.h34 class ChildProcess : protected CoreIPC::Connection::Client {

Completed in 882 milliseconds

1234