/external/quake/quake/src/QW/server/ |
qwsv.mak | 85 # ADD CPP /nologo /GX /O2 /I "." /I "../client" /D "NDEBUG" /D "SERVERONLY" /D "WIN32" /D "_CONSOLE" /YX /c
87 CPP_PROJ=/nologo /ML /GX /O2 /I "." /I "../client" /D "NDEBUG" /D "SERVERONLY"\
213 # ADD CPP /nologo /Gm /GX /Zi /Od /I "." /I "../client" /D "_DEBUG" /D "SERVERONLY" /D "WIN32" /D "_CONSOLE" /FR /YX /c
214 CPP_PROJ=/nologo /MLd /Gm /GX /Zi /Od /I "." /I "../client" /D "_DEBUG" /D\
334 "..\client\spritegn.h"\
335 ".\../client\bothdefs.h"\
336 ".\../client\bspfile.h"\
337 ".\../client\cmd.h"\
338 ".\../client\common.h"\
339 ".\../client\crc.h"\ [all...] |
/external/qemu/telephony/ |
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...] |
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...] |
/hardware/msm7k/librpc/ |
clnt.c | 28 struct CLIENT { 30 struct CLIENT *next; 34 /* We insist that there is only one outstanding call for a client at any 36 supporting multiple outstanding RPCs on a client, we will have to 72 static volatile struct CLIENT *clients; 74 /* There's one of these for each RPC client which has received an RPC call. */ 77 CLIENT *client = (CLIENT *)__u; local 79 (client->xdr->x_prog | 0x01000000) 202 CLIENT *client = (CLIENT *)clients; local 541 CLIENT *client = calloc(1, sizeof(CLIENT)); local [all...] |
/external/webkit/Source/WebKit2/Shared/ |
APIClient.h | 38 void initialize(const T* client) 40 if (client && !client->version) 41 m_client = *client;
|
/external/webkit/Source/WebCore/page/mac/ |
ChromeMac.mm | 33 NSResponder *firstResponder = client()->firstResponder(); 40 client()->makeFirstResponder(view); 47 client()->makeFirstResponder(firstResponder);
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
HttpClientPool.java | 17 package net.oauth.client.httpclient4; 34 public org.apache.http.client.HttpClient getHttpClient(URL server);
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
DefaultHttpClientProxyTest.java | 19 import org.apache.http.client.HttpClient; 20 import org.apache.http.impl.client.DefaultHttpClient;
|
/packages/apps/Nfc/tests/src/com/android/nfc/snep/ |
SnepCustomClientTests.java | 47 SnepClient client = getSnepClient(); local 48 client.connect(); 49 client.put(getSmallNdef()); 50 client.close(); 54 SnepClient client = getSnepClient(); local 55 client.connect(); 56 client.put(getLargeNdef()); 57 client.close(); 61 SnepClient client = getSnepClient(); local 62 client.connect() 69 SnepClient client = getSnepClient(); local [all...] |
SnepDefaultClientTests.java | 47 SnepClient client = new SnepClient(); local 48 client.connect(); 49 client.put(getSmallNdef()); 50 client.close(); 54 SnepClient client = new SnepClient(); local 55 client.connect(); 56 client.put(getLargeNdef()); 57 client.close(); 61 SnepClient client = new SnepClient(); local 62 client.connect() 69 SnepClient client = new SnepClient(); local [all...] |
/external/qemu/android/ |
console.c | 96 struct ControlClientRec_* next; /* next client in list */ 122 /* UI client currently attached to the core. */ 125 /* User events service client. */ 128 /* UI control service client (UI -> Core). */ 134 /* UI control service client (Core-> UI). */ 195 * the client, or redirecting the socket to another service. 200 control_client_detach( ControlClient client ) 204 if (client->sock < 0) 207 qemu_set_fd_handler( client->sock, NULL, NULL, NULL ); 208 result = client->sock 325 ControlClient client = calloc( sizeof(*client), 1 ); local 543 ControlClient client = _client; local 598 ControlClient client; local 2064 ControlClient client = opaque; local 2073 ControlClient client = opaque; local [all...] |
/external/webkit/Source/WebKit/android/jni/ |
JavaSharedClient.h | 46 static void SetTimerClient(TimerClient* client); 47 static void SetCookieClient(CookieClient* client); 48 static void SetPluginClient(PluginClient* client); 49 static void SetKeyGeneratorClient(KeyGeneratorClient* client); 50 static void SetFileSystemClient(FileSystemClient* client);
|
JavaSharedClient.cpp | 59 void JavaSharedClient::SetTimerClient(TimerClient* client) 61 gTimerClient = client; 64 void JavaSharedClient::SetCookieClient(CookieClient* client) 66 gCookieClient = client; 69 void JavaSharedClient::SetPluginClient(PluginClient* client) 71 gPluginClient = client; 74 void JavaSharedClient::SetKeyGeneratorClient(KeyGeneratorClient* client) 76 gKeyGeneratorClient = client; 79 void JavaSharedClient::SetFileSystemClient(FileSystemClient* client) 81 gFileSystemClient = client; [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
IconDatabaseClientQt.cpp | 39 static IconDatabaseClientQt* client = 0; local 40 if (!client) { 41 client = new IconDatabaseClientQt; 42 iconDatabase().setClient(client); 44 return client;
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
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...] |
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...] |
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...] |
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...] |
/external/webkit/Source/WebCore/loader/ |
ThreadableLoader.cpp | 43 PassRefPtr<ThreadableLoader> ThreadableLoader::create(ScriptExecutionContext* context, ThreadableLoaderClient* client, const ResourceRequest& request, const ThreadableLoaderOptions& options) 45 ASSERT(client); 50 return WorkerThreadableLoader::create(static_cast<WorkerContext*>(context), client, WorkerRunLoop::defaultMode(), request, options); 54 return DocumentThreadableLoader::create(static_cast<Document*>(context), client, request, options); 57 void ThreadableLoader::loadResourceSynchronously(ScriptExecutionContext* context, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options) 63 WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(context), request, client, options); local 69 DocumentThreadableLoader::loadResourceSynchronously(static_cast<Document*>(context), request, client, options); local
|
/external/bluetooth/bluez/plugins/ |
pnat.c | 65 GIOChannel *io; /* Client socket */ 66 guint io_watch; /* Client IO watch id */ 85 struct dun_client client; member in struct:dun_server 92 struct dun_client *client = &server->client; local 94 if (!client->io) 97 if (client->io_watch > 0) { 98 g_source_remove(client->io_watch); 99 client->io_watch = 0; 102 g_io_channel_shutdown(client->io, TRUE, NULL) 134 struct dun_client *client = &server->client; local 150 struct dun_client *client = &server->client; local 171 struct dun_client *client = &server->client; local 200 struct dun_client *client = &server->client; local 242 struct dun_client *client = &server->client; local 295 struct dun_client *client = &server->client; local 318 struct dun_client *client = &server->client; local 332 struct dun_client *client = &server->client; local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
SocketTest.java | 96 Socket client = socket.accept(); local 97 client.close(); 127 ClientThread client = new ClientThread(); local 128 Thread clientThread = new Thread(client); 260 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 262 client.setSoLinger(false, 100); 264 client.close(); 266 client.getOutputStream(); 344 Socket client = new Socket(); local 345 client.connect(boundAddress) 445 Socket client = new Socket(); local 513 Socket client = new Socket(InetAddress.getLocalHost(), server local 535 Socket client = new Socket(InetAddress.getLocalHost().getHostName(), local 571 Socket client = new Socket(InetAddress.getLocalHost().getHostAddress(), local 588 Socket client = new Socket(InetAddress.getLocalHost(), server local 605 Socket client = new Socket(InetAddress.getLocalHost(), server local 618 Socket client = new Socket(InetAddress.getLocalHost(), serverPort, true); local 661 Socket client = new Socket(InetAddress.getLocalHost(), server local 677 Socket client = new Socket(InetAddress.getLocalHost(), server local 700 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort(), null, 0); local 711 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 729 Socket client = new Socket(InetAddress.getLocalHost(), server local 742 Socket client = new Socket(InetAddress.getLocalHost(), server local 800 Socket client = new Socket(InetAddress.getLocalHost(), server local 890 Socket client = new Socket(InetAddress.getLocalHost(), serverPort); local 900 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 917 Socket client = new Socket(InetAddress.getLocalHost(), serverPort); local 952 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 961 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 971 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 980 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1006 Socket client = new Socket(InetAddress.getLocalHost(), server local 1051 Socket client = new Socket(InetAddress.getLocalHost(), server local 1082 Socket client = new Socket(InetAddress.getLocalHost(), server local 1117 Socket client = new Socket(InetAddress.getLocalHost(), server local 1154 Socket client = new Socket(InetAddress.getLocalHost(), server local 1209 Socket client = new Socket(); local 1416 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1440 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1472 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1486 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1496 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local 1505 Socket client = new Socket(InetAddress.getLocalHost(), server .getLocalPort()); local 1547 Socket client = new Socket(InetAddress.getLocalHost(), port); local 1590 Socket client = new Socket(InetAddress.getLocalHost(), port); local 1627 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local [all...] |
/external/webkit/Source/WebKit2/UIProcess/win/ |
TextCheckerWin.cpp | 45 WebTextCheckerClient& client = WebTextChecker::shared()->client(); 46 textCheckerState.isContinuousSpellCheckingEnabled = client.continuousSpellCheckingEnabled(); 47 textCheckerState.isGrammarCheckingEnabled = client.grammarCheckingEnabled(); 56 return WebTextChecker::shared()->client().continuousSpellCheckingAllowed(); 64 WebTextChecker::shared()->client().setContinuousSpellCheckingEnabled(isContinuousSpellCheckingEnabled); 72 WebTextChecker::shared()->client().setGrammarCheckingEnabled(isGrammarCheckingEnabled); 87 return WebTextChecker::shared()->client().uniqueSpellDocumentTag(page); 92 WebTextChecker::shared()->client().closeSpellDocumentWithTag(tag); 97 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLe (…) [all...] |
/external/bluetooth/bluez/audio/ |
unix.c | 100 static void client_free(struct unix_client *client) 102 DBG("client_free(%p)", client); 104 if (client->cancel && client->dev && client->req_id > 0) 105 client->cancel(client->dev, client->req_id); 107 if (client->sock >= 0) 108 close(client->sock) 230 struct unix_client *client = user_data; local 281 struct unix_client *client = user_data; local 314 struct unix_client *client = user_data; local 344 struct unix_client *client = user_data; local 370 struct unix_client *client = user_data; local 414 struct unix_client *client = user_data; local 449 struct unix_client *client = user_data; local 628 struct unix_client *client = user_data; local 722 struct unix_client *client = user_data; local 781 struct unix_client *client = user_data; local 835 struct unix_client *client = user_data; local 906 struct unix_client *client = user_data; local 1230 struct unix_client *client = user_data; local 1701 struct unix_client *client = data; local 1784 struct unix_client *client; local 1829 struct unix_client *client = l->data; local 1855 struct unix_client *client = l->data; local [all...] |
/external/webkit/Source/WebCore/platform/efl/ |
PopupMenuEfl.cpp | 36 PopupMenuEfl::PopupMenuEfl(PopupMenuClient* client) 37 : m_popupClient(client) 44 // Tell client to destroy data related to this popup since this object is 53 ChromeClientEfl* chromeClient = static_cast<ChromeClientEfl*>(view->frame()->page()->chrome()->client()); 63 ChromeClientEfl* chromeClient = static_cast<ChromeClientEfl*>(m_view->frame()->page()->chrome()->client()); 71 client()->setTextFromItem(client()->selectedIndex());
|
/external/apache-http/src/org/apache/http/client/ |
UserTokenHandler.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/UserTokenHandler.java $ 32 package org.apache.http.client;
|