/external/apache-http/src/org/apache/http/ |
HttpServerConnection.java | 49 * Receives the request line and all headers available from this connection. 50 * The caller should examine the returned request and decide if to receive a 51 * request entity as well. 53 * @return a new HttpRequest object whose request line and headers are 62 * Receives the next request entity available from this connection and attaches it to 63 * an existing request. 64 * @param request the request to attach the entity to. 68 void receiveRequestEntity(HttpEntityEnclosingRequest request)
|
/external/apache-http/src/org/apache/http/conn/routing/ |
HttpRoutePlanner.java | 49 * Determines the route for a request. 51 * @param target the target host for the request. 54 * to a default target or by inspecting the request. 55 * @param request the request to execute 59 * @return the route that the request should take 64 HttpRequest request,
|
/external/apache-http/src/org/apache/http/protocol/ |
HttpExpectationVerifier.java | 39 * Defines an interface to verify whether an incoming HTTP request meets 42 * The Expect request-header field is used to indicate that particular 55 * the expectation values in the Expect field of a request MUST respond 58 * or, if there are other problems with the request, some other 4xx 70 void verify(HttpRequest request, HttpResponse response, HttpContext context)
|
HttpRequestHandler.java | 50 void handle(HttpRequest request, HttpResponse response, HttpContext context)
|
/external/chromium/chrome/browser/net/ |
url_request_slow_http_job.h | 16 URLRequestSlowHTTPJob(net::URLRequest* request, const FilePath& file_path);
|
/external/chromium/net/http/ |
http_auth_controller_unittest.cc | 44 HttpRequestInfo request; local 45 request.method = "GET"; 46 request.url = GURL("http://example.com"); 77 controller->MaybeGenerateAuthToken(&request, &callback, 89 // used and retry the request. 94 // of OK from the controller so we can retry the request.
|
/external/chromium/net/url_request/ |
url_request_about_job.h | 19 explicit URLRequestAboutJob(URLRequest* request);
|
url_request_data_job.h | 20 explicit URLRequestDataJob(URLRequest* request);
|
url_request_redirect_job.h | 16 // A URLRequestJob that will redirect the request to the specified 17 // URL. This is useful to restart a request at a different URL based 22 URLRequestRedirectJob(URLRequest* request, const GURL& redirect_destination);
|
/external/libnl-headers/netlink/fib_lookup/ |
lookup.h | 18 #include <netlink/fib_lookup/request.h>
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpClient.java | 28 * Send an HTTP request and return the response. 33 HttpResponseMessage execute(HttpMessage request) throws IOException;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
BlockingService.java | 53 Message request) throws ServiceException;
|
Service.java | 62 * <li>{@code request} is of the exact same class as the object returned by 86 Message request, 90 * <p>{@code callMethod()} requires that the request passed in is of a 101 * Message request = 104 * service.callMethod(method, request, callback);
|
/external/v8/samples/ |
count-hosts.js | 30 function Process(request) { 32 log("Processing " + request.host + request.path + 33 " from " + request.referrer + "@" + request.userAgent); 35 if (!output[request.host]) { 36 output[request.host] = 1; 38 output[request.host]++
|
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/ |
WebKitDOMTestCallbackPrivate.h | 32 core(WebKitDOMTestCallback *request);
|
WebKitDOMTestInterfacePrivate.h | 32 core(WebKitDOMTestInterface *request);
|
WebKitDOMTestMediaQueryListListenerPrivate.h | 32 core(WebKitDOMTestMediaQueryListListener *request);
|
WebKitDOMTestObjPrivate.h | 32 core(WebKitDOMTestObj *request);
|
WebKitDOMTestSerializedScriptValueInterfacePrivate.h | 32 core(WebKitDOMTestSerializedScriptValueInterface *request);
|
/external/webkit/Source/WebCore/wml/ |
WMLGoElement.cpp | 129 ResourceRequest request(url); 132 request.setHTTPReferrer(loader->outgoingReferrer()); 137 preparePOSTRequest(request, inSameDeck, cacheControl); 139 prepareGETRequest(request, url); 143 request.setHTTPHeaderField("cache-control", cacheControl); 146 request.setCachePolicy(ReloadIgnoringCacheData); 149 loader->load(request, false); 152 void WMLGoElement::preparePOSTRequest(ResourceRequest& request, bool inSameDeck, const String& cacheControl) 154 request.setHTTPMethod("POST"); 157 request.setCachePolicy(ReturnCacheDataDontLoad) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebGeolocationClientMock.cpp | 121 void WebGeolocationClientMock::requestPermission(const WebGeolocationPermissionRequest& request) 123 m_clientMock->requestPermission(request.geolocation()); 126 void WebGeolocationClientMock::cancelPermissionRequest(const WebGeolocationPermissionRequest& request) 128 m_clientMock->cancelPermissionRequest(request.geolocation());
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebFrameNetworkingContext.mm | 43 ResourceError WebFrameNetworkingContext::blockedError(const ResourceRequest& request) const 45 return frame()->loader()->blockedError(request);
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKDownload.cpp | 42 return toAPI(WebURLRequest::create(toImpl(download)->request()).leakRef());
|
/external/webkit/Source/WebKit2/WebProcess/Downloads/ |
DownloadManager.cpp | 47 void DownloadManager::startDownload(uint64_t downloadID, WebPage* initiatingPage, const ResourceRequest& request) 49 OwnPtr<Download> download = Download::create(downloadID, request); 56 void DownloadManager::convertHandleToDownload(uint64_t downloadID, WebPage* initiatingPage, ResourceHandle* handle, const ResourceRequest& request, const ResourceRequest& initialRequest, const ResourceResponse& response) 58 OwnPtr<Download> download = Download::create(downloadID, request);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
WebFrameNetworkingContext.mm | 46 ResourceError WebFrameNetworkingContext::blockedError(const ResourceRequest& request) const 48 return frame()->loader()->blockedError(request);
|