HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 101 - 125 of 965) sorted by null

1 2 3 45 6 7 8 91011>>

  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /development/tools/emulator/system/libqemu/
test_host_2.c 91 int sock, client; local
102 client = TFR(accept(sock, NULL, NULL));
103 if (client < 0) {
107 printf("Client connected!\n");
114 ret = TFR(read(client, buff, sizeof(buff)));
116 fprintf(stderr, "Client read error: %s\n", strerror(errno));
117 socket_close(client);
124 printf("Client closed connection\n");
125 socket_close(client);
  /external/webkit/Source/WebCore/platform/network/
DataURL.cpp 48 handle->client()->cannotShowURL(handle);
72 handle->client()->didReceiveResponse(handle, response);
77 handle->client()->didReceiveData(handle, out.data(), out.size(), 0);
81 handle->client()->didReceiveResponse(handle, response);
86 handle->client()->didReceiveData(handle, encodedData.data(), encodedData.length(), 0);
89 handle->client()->didFinishLoading(handle, 0);
ResourceHandle.cpp 42 ResourceHandle::ResourceHandle(const ResourceRequest& request, ResourceHandleClient* client, bool defersLoading, bool shouldContentSniff)
43 : d(new ResourceHandleInternal(this, request, client, defersLoading, shouldContentSniff && shouldContentSniffURL(request.url())))
56 PassRefPtr<ResourceHandle> ResourceHandle::create(NetworkingContext* context, const ResourceRequest& request, ResourceHandleClient* client, bool defersLoading, bool shouldContentSniff)
60 PassRefPtr<ResourceHandle> handle = blobRegistry().createResourceHandle(request, client);
66 RefPtr<ResourceHandle> newHandle(adoptRef(new ResourceHandle(request, client, defersLoading, shouldContentSniff)));
85 if (!client())
94 client()->wasBlocked(this);
98 client()->cannotShowURL(this);
105 ResourceHandleClient* ResourceHandle::client() const function in class:WebCore::ResourceHandle
110 void ResourceHandle::setClient(ResourceHandleClient* client)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
security.h 152 extern int (*UntrustedProcVector[256])(ClientPtr client);
153 extern int (*SwappedUntrustedProcVector[256])(ClientPtr client);
155 extern Bool SecurityCheckDeviceAccess(ClientPtr client, DeviceIntPtr dev,
161 extern Bool SecuritySameLevel(ClientPtr client, XID authId);
170 ClientPtr client,
184 ClientPtr client,
  /external/apache-http/src/org/apache/http/client/methods/
AbortableHttpRequest.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/AbortableHttpRequest.java $
32 package org.apache.http.client.methods;
36 import org.apache.http.client.HttpClient;
  /external/kernel-headers/original/linux/
omap_ion.h 45 int omap_ion_tiler_alloc(struct ion_client *client,
48 int omap_tiler_pages(struct ion_client *client, struct ion_handle *handle,
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandle.h 49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
  /external/webkit/Source/WebCore/platform/network/chromium/
SocketStreamHandle.h 49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
  /external/webkit/Source/WebCore/platform/network/curl/
SocketStreamHandle.h 48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
SocketStreamHandleCurl.cpp 42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
43 : SocketStreamHandleBase(url, client)
45 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
  /external/webkit/Source/WebCore/platform/network/win/
SocketStreamHandle.h 48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
SocketStreamHandleWin.cpp 42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
43 : SocketStreamHandleBase(url, client)
45 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerImpl.h 52 explicit WebWorkerImpl(WebWorkerClient* client);
62 virtual WebWorkerClient* client() { return m_client; } function in class:WebKit::WebWorkerImpl
  /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;
  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.cpp 35 ResponsivenessTimer::ResponsivenessTimer(ResponsivenessTimer::Client* client)
36 : m_client(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/core/java/com/android/internal/view/
IInputMethodManager.aidl 29 * Public interface to the global input method manager, used by all client
41 void addClient(in IInputMethodClient client,
43 void removeClient(in IInputMethodClient client);
45 InputBindResult startInput(in IInputMethodClient client,
48 void finishInput(in IInputMethodClient client);
49 boolean showSoftInput(in IInputMethodClient client, int flags,
51 boolean hideSoftInput(in IInputMethodClient client, int flags,
53 void windowGainedFocus(in IInputMethodClient client, in IBinder windowToken,
57 void showInputMethodPickerFromClient(in IInputMethodClient client);
58 void showInputMethodAndSubtypeEnablerFromClient(in IInputMethodClient client, String topId)
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 106 String clientToServerString = "this is sent from the client to the server...";
107 String serverToClientString = "... and this from the server to the client";
161 SSLSocket client = pair[1]; local
163 client.getOutputStream().write(clientToServer);
167 int readFromServer = client.getInputStream().read(clientFromServer);
173 client.close();
179 + " client=" + clientProvider
271 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
300 client.startHandshake();
301 assertNotNull(client.getSession())
319 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
359 SSLSocket client = (SSLSocket) local
383 final SSLSocket client = (SSLSocket) local
492 final SSLSocket client = (SSLSocket) local
521 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
574 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
620 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
650 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
727 SSLSocket client = (SSLSocket) clientContext.getSocketFactory().createSocket(c.host, local
761 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
773 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
806 SSLSocket client = (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, local
913 SSLSocket client = pair.client; local
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
PopupMenuMac.mm 43 PopupMenuMac::PopupMenuMac(PopupMenuClient* client)
44 : m_popupClient(client)
65 m_popup = [[NSPopUpButtonCell alloc] initTextCell:@"" pullsDown:!client()->shouldPopOver()];
75 if (!client()->shouldPopOver())
79 TextDirection menuTextDirection = client()->menuStyle().textDirection();
83 ASSERT(client());
84 int size = client()->listSize();
87 if (client()->itemIsSeparator(i))
90 PopupMenuStyle style = client()->itemStyle(i);
116 NSAttributedString *string = [[NSAttributedString alloc] initWithString:client()->itemText(i) attributes:attributes]
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 41 GeolocationService* GeolocationServiceGtk::create(GeolocationServiceClient* client)
43 return new GeolocationServiceGtk(client);
48 GeolocationServiceGtk::GeolocationServiceGtk(GeolocationServiceClient* client)
49 : GeolocationService(client)
74 // TODO: Also get GeoclueVelocity but there is no master client
86 GeoclueMasterClient* client = geoclue_master_create_client(master, 0, 0); local
89 if (!client) {
102 gboolean result = geoclue_master_client_set_requirements(client, accuracyLevel, timeout,
107 g_object_unref(client);
111 m_geocluePosition = geoclue_master_client_create_position(client, &error.outPtr())
    [all...]
  /frameworks/base/media/libstagefright/
StagefrightMediaScanner.cpp 56 const char *filename, MediaScannerClient *client) {
96 status_t status = client->addStringTag("duration", buffer);
105 MediaScannerClient &client) {
108 client.setLocale(locale());
109 client.beginFile();
110 MediaScanResult result = processFileInternal(path, mimeType, client);
111 client.endFile();
117 MediaScannerClient &client) {
137 return HandleMIDI(path, &client);
150 status = client.setMimeType(value)
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
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...]
  /external/webkit/Source/WebCore/fileapi/
FileStreamProxy.cpp 47 inline FileStreamProxy::FileStreamProxy(ScriptExecutionContext* context, FileStreamClient* client)
48 : AsyncFileStream(client)
54 PassRefPtr<FileStreamProxy> FileStreamProxy::create(ScriptExecutionContext* context, FileStreamClient* client)
56 RefPtr<FileStreamProxy> proxy = adoptRef(new FileStreamProxy(context, client));
80 if (proxy->client())
81 proxy->client()->didStart();
86 if (!client())
94 // Clear the client so that we won't be calling callbacks on the client.
115 if (proxy->client())
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 56 KeyGeneratorClient* client = JavaSharedClient::GetKeyGeneratorClient(); local
57 if (!client)
60 return client->getSupportedKeyStrengthList();
65 KeyGeneratorClient* client = JavaSharedClient::GetKeyGeneratorClient(); local
66 if (!client)
69 return client->getSignedPublicKeyAndChallengeString(index, challenge, url);
80 CookieClient* client = JavaSharedClient::GetCookieClient();
81 if (!client)
84 client->setCookies(url, value);
97 CookieClient* client = JavaSharedClient::GetCookieClient()
145 FileSystemClient* client = JavaSharedClient::GetFileSystemClient(); local
    [all...]

Completed in 6433 milliseconds

1 2 3 45 6 7 8 91011>>