HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 476 - 500 of 2852) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libevent/
evrpc.h 41 * EVRPC_HEADER(SendCommand, Request, Reply);
44 * Request is the name of a structure generated by event_rpcgen.py.
57 * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg);
73 /* Encapsulates a request */
77 /* the URI at which the request handler lives */
80 /* creates a new request structure */
83 /* frees the request structure */
86 /* unmarshals the buffer into the proper request structure */
120 /* the unmarshaled request object */
121 void *request; member in struct:evrpc_req_generic
359 void *request; member in struct:evrpc_request_wrapper
    [all...]
  /external/chromium_org/net/http/
http_stream_factory_impl.cc 112 Request* request = new Request(request_info.url, local
131 request->AttachJob(alternate_job);
137 request->AttachJob(job);
146 alternate_job->Start(request);
149 // request yet, since we defer that to the next iteration of the MessageLoop,
151 job->Start(request);
152 return request;
248 // the alternate request will be going via UDP to a different port
287 Request* request = *spdy_session_request_map_[spdy_session_key].begin(); local
335 Request* request = *http_pipelining_request_map_[host->GetKey()].begin(); local
353 Request* request = *it; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
testfilehandler.py 68 key = self.request.get(PARAM_KEY)
69 master = self.request.get(PARAM_MASTER)
70 builder = self.request.get(PARAM_BUILDER)
71 test_type = self.request.get(PARAM_TEST_TYPE)
72 name = self.request.get(PARAM_NAME)
73 num_files = self.request.get(PARAM_NUM_FILES)
74 before = self.request.get(PARAM_BEFORE)
167 if "If-Modified-Since" in self.request.headers:
168 old_date = self.request.headers["If-Modified-Since"]
183 key = self.request.get(PARAM_KEY
    [all...]
  /external/kernel-headers/original/linux/
blkdev.h 96 * For request batching
98 unsigned long last_waited; /* Time last woken after wait for request */
112 struct request;
113 typedef void (rq_end_io_fn)(struct request *, int);
128 struct request { struct
184 * when request is used as a packet command carrier
210 __REQ_SORTED, /* elevator knows about this request */
214 __REQ_CMD, /* is a regular fs rw request */
227 __REQ_FAILED, /* set if the request failed */
234 __REQ_PM_SUSPEND, /* suspend request */
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CachingPipeline.java 141 private String getType(RenderingRequest request) {
142 if (request.getType() == RenderingRequest.ICON_RENDERING) {
145 if (request.getType() == RenderingRequest.FILTERS_RENDERING) {
148 if (request.getType() == RenderingRequest.FULL_RENDERING) {
151 if (request.getType() == RenderingRequest.GEOMETRY_RENDERING) {
154 if (request.getType() == RenderingRequest.PARTIAL_RENDERING) {
157 if (request.getType() == RenderingRequest.HIGHRES_RENDERING) {
215 public void renderHighres(RenderingRequest request) {
220 ImagePreset preset = request.getImagePreset();
232 request.setBitmap(bmp)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 710 // Update the data source's request with the new URL to fake the URL change
718 // the current request.
821 void FrameLoader::setReferrerForFrameRequest(ResourceRequest& request, ShouldSendReferrer shouldSendReferrer)
824 request.clearHTTPReferrer();
828 String argsReferrer(request.httpReferrer());
831 String referrer = SecurityPolicy::generateReferrerHeader(m_frame->document()->referrerPolicy(), request.url(), argsReferrer);
833 request.setHTTPReferrer(referrer);
835 addHTTPOriginIfNeeded(request, referrerOrigin->toString());
838 FrameLoadType FrameLoader::determineFrameLoadType(const FrameLoadRequest& request)
842 if (request.resourceRequest().cachePolicy() == ReloadIgnoringCacheData
978 ResourceRequest request = documentLoader->request(); local
1501 const ResourceRequest& request = action.resourceRequest(); local
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.cc 124 // Pages discovery request.
136 // Pages discovery json request.
162 net::URLRequest* request = new net::URLRequest( local
164 Bind(request, connection_id);
165 request->set_context(
167 request->Start();
172 const net::HttpServerRequestInfo& request) {
180 request));
203 net::URLRequest* request = *it2; local
204 request->Cancel()
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 65 import javax.sip.message.Request;
198 Request request = (caller == callee) local
199 ? createRequest(Request.OPTIONS, caller, tag)
200 : createRequest(Request.OPTIONS, caller, callee, tag);
203 mSipProvider.getNewClientTransaction(request);
214 Request request = createRequest(Request.REGISTER, userProfile, tag); local
218 request.addHeader(createWildcardContactHeader())
246 Request request = mMessageFactory.createRequest(requestURI, local
279 Request request = mMessageFactory.createRequest(requestURI, local
291 Request request = createRequest(Request.INVITE, caller, callee, tag); local
313 Request request = dialog.createRequest(Request.INVITE); local
339 Request request = event.getRequest(); local
352 Request request = event.getRequest(); local
377 Request request = event.getRequest(); local
404 Request request = event.getRequest(); local
450 Request request = event.getRequest(); local
466 Request request = dialog.createRequest(Request.NOTIFY); local
    [all...]
  /bionic/libc/include/sys/
ptrace.h 41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
  /development/ndk/platforms/android-3/include/sys/
ptrace.h 41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
  /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/chromium_org/android_webview/browser/
intercepted_request_data.h 26 // This creates a URLRequestJob for the |request| wich will read data from
31 net::URLRequest* request,
  /external/chromium_org/chrome/browser/android/
intercept_download_resource_throttle.h 18 // InterceptDownloadResourceThrottle checks if a download request should be
22 InterceptDownloadResourceThrottle(net::URLRequest* request,
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_protocol_handler.h 25 net::URLRequest* request,
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api.h 145 // the given request. Returns net::ERR_IO_PENDING if an extension is
146 // intercepting the request, OK otherwise.
149 net::URLRequest* request,
154 // requests only, and allows modification of the outgoing request headers.
155 // Returns net::ERR_IO_PENDING if an extension is intercepting the request, OK
159 net::URLRequest* request,
167 net::URLRequest* request,
172 // Returns net::ERR_IO_PENDING if an extension is intercepting the request,
182 net::URLRequest* request,
188 // the given request. If the listener is not registered as "blocking", the
    [all...]
web_request_permissions.h 30 // Returns true if the request shall not be reported to extensions.
32 const net::URLRequest* request);
  /external/chromium_org/chrome/browser/geolocation/
chrome_access_token_store.h 21 const LoadAccessTokensCallbackType& request) OVERRIDE;

Completed in 720 milliseconds

<<11121314151617181920>>