Searched refs:client (Results 126 - 150 of 829) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/network/
H A DDataURL.cpp48 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);
H A DResourceHandle.cpp42 ResourceHandle::ResourceHandle(const ResourceRequest& request, ResourceHandleClient* client, bool defersLoading, bool shouldContentSniff) argument
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) argument
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) argument
[all...]
/external/apache-http/src/org/apache/http/client/methods/
H A DAbortableHttpRequest.java2 * $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;
H A DHttpDelete.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpDelete.java $
32 package org.apache.http.client.methods;
43 * identified by the Request-URI. [...] The client cannot
H A DHttpGet.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpGet.java $
32 package org.apache.http.client.methods;
H A DHttpHead.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpHead.java $
32 package org.apache.http.client.methods;
H A DHttpPost.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpPost.java $
32 package org.apache.http.client.methods;
H A DHttpPut.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpPut.java $
32 package org.apache.http.client.methods;
H A DHttpTrace.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpTrace.java $
32 package org.apache.http.client.methods;
44 * SHOULD reflect the message received back to the client as the
H A DHttpUriRequest.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpUriRequest.java $
32 package org.apache.http.client.methods;
/external/kernel-headers/original/linux/
H A Domap_ion.h45 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/curl/
H A DSocketStreamHandleCurl.cpp42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client) argument
43 : SocketStreamHandleBase(url, client)
45 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
/external/webkit/Source/WebCore/platform/network/win/
H A DSocketStreamHandleWin.cpp42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client) argument
43 : SocketStreamHandleBase(url, client)
45 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
/external/webkit/Source/WebKit/chromium/src/
H A DWebSharedWorkerImpl.h50 explicit WebSharedWorkerImpl(WebCommonWorkerClient* client);
60 WebWorkerClient* client();
/external/webkit/Source/WebKit2/UIProcess/
H A DResponsivenessTimer.cpp35 ResponsivenessTimer::ResponsivenessTimer(ResponsivenessTimer::Client* client) argument
36 : m_client(client)
/external/webkit/Source/WebCore/platform/mac/
H A DPopupMenuMac.mm43 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()
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DGeolocationServiceGtk.cpp41 GeolocationService* GeolocationServiceGtk::create(GeolocationServiceClient* client) argument
43 return new GeolocationServiceGtk(client);
48 GeolocationServiceGtk::GeolocationServiceGtk(GeolocationServiceClient* client) argument
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,
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileStreamProxy.cpp47 inline FileStreamProxy::FileStreamProxy(ScriptExecutionContext* context, FileStreamClient* client) argument
48 : AsyncFileStream(client)
54 PassRefPtr<FileStreamProxy> FileStreamProxy::create(ScriptExecutionContext* context, FileStreamClient* client) argument
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/apache-http/src/org/apache/http/client/
H A DClientProtocolException.java31 package org.apache.http.client;
H A DCookieStore.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/CookieStore.java $
31 package org.apache.http.client;
H A DCredentialsProvider.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/CredentialsProvider.java $
31 package org.apache.http.client;
H A DRedirectException.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/RedirectException.java $
31 package org.apache.http.client;
/external/apache-http/src/org/apache/http/client/params/
H A DClientPNames.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/ClientPNames.java $
31 package org.apache.http.client.params;
/external/apache-http/src/org/apache/http/client/protocol/
H A DClientContext.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/ClientContext.java $
32 package org.apache.http.client.protocol;
37 * attribute names for client.
/external/apache-http/src/org/apache/http/impl/client/
H A DRoutedRequest.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/RoutedRequest.java $
32 package org.apache.http.impl.client;

Completed in 233 milliseconds

1234567891011>>