HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 401 - 425 of 1458) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/network/
BlobResourceHandle.h 53 static PassRefPtr<BlobResourceHandle> create(PassRefPtr<BlobStorageData> blobData, const ResourceRequest& request, ResourceHandleClient* client, bool async = true)
55 return adoptRef(new BlobResourceHandle(blobData, request, client, async));
58 static void loadResourceSynchronously(PassRefPtr<BlobStorageData> blobData, const ResourceRequest& request, ResourceError& error, ResourceResponse& response, Vector<char>& data);
ResourceRequestBase.cpp 49 OwnPtr<ResourceRequest> request(new ResourceRequest());
50 request->setURL(data->m_url);
51 request->setCachePolicy(data->m_cachePolicy);
52 request->setTimeoutInterval(data->m_timeoutInterval);
53 request->setFirstPartyForCookies(data->m_firstPartyForCookies);
54 request->setHTTPMethod(data->m_httpMethod);
55 request->setPriority(data->m_priority);
56 request->setTargetType(data->m_targetType);
58 request->updateResourceRequest();
59 request->m_httpHeaderFields.adopt(data->m_httpHeaders.release())
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitnetworkrequest.h 63 webkit_network_request_set_uri (WebKitNetworkRequest *request,
67 webkit_network_request_get_uri (WebKitNetworkRequest *request);
70 webkit_network_request_get_message(WebKitNetworkRequest* request);
webkitwebdatasource.cpp 49 * provides access to these resources. When a request gets loaded initially,
50 * it is set to a provisional state. The application can request for the
51 * request that initiated the load by asking for the provisional data source
152 WebKitNetworkRequest* request = webkit_network_request_new("about:blank"); local
153 WebKitWebDataSource* datasource = webkit_web_data_source_new_with_request(request);
154 g_object_unref(request);
161 * @request: the #WebKitNetworkRequest to use to create this data source
171 WebKitWebDataSource* webkit_web_data_source_new_with_request(WebKitNetworkRequest* request)
173 ASSERT(request);
175 const gchar* uri = webkit_network_request_get_uri(request);
230 ResourceRequest request = priv->loader->originalRequest(); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
PolicyDelegate.h 49 /* [in] */ IWebURLRequest *request,
56 /* [in] */ IWebURLRequest *request,
63 /* [in] */ IWebURLRequest *request,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaPlayerInvokeTest.java 63 Parcel request = mPlayer.newRequest(); local
67 request.writeInt(val);
68 mPlayer.invoke(request, reply);
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableTextToSpeechService.java 58 protected void onSynthesizeText(SynthesisRequest request, SynthesisCallback callback) {
59 sDelegate.onSynthesizeText(request, callback);
71 void onSynthesizeText(SynthesisRequest request, SynthesisCallback callback);
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogAdapterTest.java 89 // There is one request for contact details.
92 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
94 assertEquals(TEST_NUMBER, request.number);
96 assertEquals(TEST_COUNTRY_ISO, request.countryIso);
97 // Since there is nothing in the cache, it is an immediate request.
98 assertTrue("should be immediate", request.immediate);
107 // There is one request for contact details.
110 TestCallLogAdapter.Request request = mAdapter.requests.get(0) local
128 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
158 TestCallLogAdapter.Request request = mAdapter.requests.get(0); local
    [all...]
  /external/chromium/chrome/browser/policy/
device_management_service_unittest.cc 41 // against a TestURLFetcherFactory that is used to short-circuit the request
107 em::DeviceRegisterRequest request; local
108 backend_->ProcessRegisterRequest(kAuthToken, kDeviceId, request, &mock);
123 em::DeviceUnregisterRequest request; local
124 backend_->ProcessUnregisterRequest(kDMToken, kDeviceId, request, &mock);
139 em::DevicePolicyRequest request; local
140 request.set_policy_scope(kChromePolicyScope);
142 request.add_setting_request();
144 backend_->ProcessPolicyRequest(kDMToken, kDeviceId, request, &mock);
293 em::DeviceRegisterRequest request; local
327 em::DeviceUnregisterRequest request; local
368 em::DeviceRegisterRequest request; local
380 em::DeviceUnregisterRequest request; local
392 em::DevicePolicyRequest request; local
415 em::DeviceRegisterRequest request; local
443 em::DevicePolicyRequest request; local
465 em::DeviceRegisterRequest request; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketadapters.cc 414 "http://www.google.com/support/talk/bin/request.py\r\n\r\n"
654 ByteBuffer request;
655 request.WriteUInt8(5); // Socks Version
657 request.WriteUInt8(1); // Authentication Mechanisms
658 request.WriteUInt8(0); // No authentication
660 request.WriteUInt8(2); // Authentication Mechanisms
661 request.WriteUInt8(0); // No authentication
662 request.WriteUInt8(2); // Username/Password
664 DirectSend(request.Data(), request.Length())
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.h 79 virtual void OnResponseStarted(net::URLRequest* request);
80 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
84 void Bind(net::URLRequest* request, int connection_id);
85 void RequestCompleted(net::URLRequest* request);
94 const net::HttpServerRequestInfo& request);
  /external/chromium/chrome/browser/extensions/
extension_webrequest_api.h 40 // the given request. Returns net::ERR_IO_PENDING if an extension is
41 // intercepting the request, OK otherwise.
44 net::URLRequest* request,
49 // requests only, and allows modification of the outgoing request headers.
50 // Returns net::ERR_IO_PENDING if an extension is intercepting the request, OK
58 void OnURLRequestDestroyed(ProfileId profile_id, net::URLRequest* request);
61 // TODO(mpcomplete): modify request
104 net::URLRequest* request,
119 // Same as above, but retrieves the filter parameters from the request.
123 net::URLRequest* request);
    [all...]
  /external/chromium/chrome/browser/net/
url_request_mock_net_error_job.cc 61 net::URLRequest* request,
63 GURL url = request->url();
79 return new URLRequestMockNetErrorJob(request, mock_info.errors,
84 URLRequestMockNetErrorJob::URLRequestMockNetErrorJob(net::URLRequest* request,
87 : URLRequestMockHTTPJob(request, file_path),
  /external/webkit/Source/WebCore/platform/network/qt/
ResourceHandleQt.cpp 90 // If credentials were specified for this request, add them to the url,
117 bool ResourceHandle::willLoadFromCache(ResourceRequest& request, Frame* frame)
132 QNetworkCacheMetaData data = cache->metaData(request.url());
134 request.setCachePolicy(ReturnCacheDataDontLoad);
152 void ResourceHandle::loadResourceSynchronously(NetworkingContext* context, const ResourceRequest& request, StoredCredentials /*storedCredentials*/, ResourceError& error, ResourceResponse& response, Vector<char>& data)
155 RefPtr<ResourceHandle> handle = adoptRef(new ResourceHandle(request, &syncLoader, true, false));
159 // If credentials were specified for this request, add them to the url,
168 // starting in deferred mode gives d->m_job the chance of being set before sending the request.
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerTestApp.java 19 import android.app.DownloadManager.Request;
142 Request request = new Request(remoteUri); local
144 dlRequest = mDownloadManager.enqueue(request);
235 Request request = new Request(remoteUri); local
236 request.setMimeType("application/vnd.android.package-archive");
238 dlRequest = mDownloadManager.enqueue(request);
283 Request request = new Request(remoteUri); local
357 Request request = new Request(remoteUri); local
427 Request request = new Request(remoteUri); local
493 Request request = new Request(remoteUri); local
    [all...]
  /frameworks/support/volley/tests/src/com/android/volley/mock/
MockHttpClient.java 56 public HttpResponse execute(HttpUriRequest request, HttpContext context) {
57 requestExecuted = request;
70 public HttpResponse execute(HttpUriRequest request) {
75 public HttpResponse execute(HttpHost target, HttpRequest request) {
85 public HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) {
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.cpp 110 ClearSiteDataRequest request; local
111 request.sites = sites;
112 request.flags = flags;
113 request.maxAgeInSeconds = maxAgeInSeconds;
114 request.callbackID = callbackID;
115 m_pendingClearSiteDataRequests.append(request);
206 const ClearSiteDataRequest& request = m_pendingClearSiteDataRequests[i]; local
207 m_connection->send(Messages::PluginProcess::ClearSiteData(request.sites, request.flags, request.maxAgeInSeconds, request.callbackID), 0)
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 60 public HttpResponseMessage execute(HttpMessage request) throws IOException {
61 final String method = request.method;
62 final String url = request.url.toExternalForm();
63 final InputStream body = request.getBody();
75 String length = request.removeHeaders(HttpMessage.CONTENT_LENGTH);
85 for (Map.Entry<String, String> header : request.headers) {
91 return new HttpMethodResponse(httpRequest, httpResponse, excerpt, request.getContentCharset());
  /external/svox/pico/compat/src/com/android/tts/compat/
CompatTtsService.java 112 protected void onSynthesizeText(SynthesisRequest request, SynthesisCallback callback) {
119 String lang = request.getLanguage();
120 String country = request.getCountry();
121 String variant = request.getVariant();
129 int speechRate = request.getSpeechRate();
137 int pitch = request.getPitch();
145 if (mNativeSynth.speak(request, callback) != TextToSpeech.SUCCESS) {
  /external/webkit/Source/WebCore/storage/
IDBTransaction.cpp 106 void IDBTransaction::registerRequest(IDBRequest* request)
108 m_childRequests.add(request);
111 void IDBTransaction::unregisterRequest(IDBRequest* request)
113 // If we aborted the request, it will already have been removed.
114 m_childRequests.remove(request);
120 IDBRequest* request = *m_childRequests.begin(); local
121 m_childRequests.remove(request);
122 request->abort();
136 // get a handle to us or any child request object and any of those have
165 // FIXME: Technically we can suspend before the first request is schedul
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
JavaNetHttpHelper.java 59 * Executes a GET request and returns the response content.
61 * @param request Request.
67 public String get(GetRequest request) throws IOException, HttpException {
68 return get(request.getUrl(), request.getHeaders());
72 * Executes a GET request and returns the response content.
74 * @param url Request URI.
75 * @param requestHeaders Request headers.
97 public String post(PostRequest request) throws IOException, HttpException
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_error_handler.js 48 * Handle request messages from the popup.
50 * @param {!{type:string}} request The external request to answer.
52 * the request.
56 handleOnRequest_: function(request, sender, sendResponse) {
57 if (request.type === 'getError') {
59 } else if (request.type === 'clearError') {
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 41 * Methods for an OAuth consumer to request tokens from a service provider.
43 * This class can also be used to request access to protected resources, in some
58 * handled at the HTTP level, if the second request must carry another OAuth
61 * the redirected request to be signed.
84 * Get a fresh request token from the service provider.
91 * request token.
101 * Get a fresh request token from the service provider.
108 * request token.
120 /** Get a fresh request token from the service provider.
127 * request token
220 OAuthMessage request = accessor.newRequestMessage(httpMethod, url, local
    [all...]
  /external/chromium/chrome/browser/history/
history.h 81 // only invoked if the request was not canceled and returned true from
94 // This service is thread safe. Each request callback is invoked in the
95 // thread that made the request.
319 // if the request is not canceled.
354 // Request the top |result_count| most visited URLs and the chain of redirects
364 // Request the |result_count| most visited URLs and the chain of
373 // Implemented by consumers to get thumbnail data. Called when a request for
374 // the thumbnail data is complete. Once this callback is made, the request
383 // database or the request will be ignored.
422 // Begins a history request to create a new persistent entry for a download
    [all...]
  /external/chromium/net/server/
http_server.cc 42 const HttpServerRequestInfo& request,
45 request.headers.find(header_name);
46 if (it != request.headers.end())
72 const HttpServerRequestInfo& request) {
77 std::string key1 = GetHeaderValue(request, "Sec-WebSocket-Key1");
78 std::string key2 = GetHeaderValue(request, "Sec-WebSocket-Key2");
86 memcpy(data + 8, &request.data[0], 8);
91 std::string origin = GetHeaderValue(request, "Origin");
92 std::string host = GetHeaderValue(request, "Host");
93 std::string location = "ws://" + host + request.path
379 HttpServerRequestInfo request; local
    [all...]

Completed in 2791 milliseconds

<<11121314151617181920>>