HomeSort by relevance Sort by last modified time
    Searched defs:Request (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /external/chromium_org/net/http/
http_stream_factory_impl.h 64 class NET_EXPORT_PRIVATE Request;
67 typedef std::set<Request*> RequestSet;
83 // Detaches |job| from |request|.
84 void OrphanJob(Job* job, const Request* request);
117 std::map<const Job*, Request*> request_map_;
128 // These jobs correspond to preconnect requests and have no associated Request
http_stream_factory_impl_request.cc 16 HttpStreamFactoryImpl::Request::Request(
39 HttpStreamFactoryImpl::Request::~Request() {
55 void HttpStreamFactoryImpl::Request::SetSpdySessionKey(
65 void HttpStreamFactoryImpl::Request::AttachJob(Job* job) {
71 void HttpStreamFactoryImpl::Request::Complete(
89 void HttpStreamFactoryImpl::Request::OnStreamReady(
102 void HttpStreamFactoryImpl::Request::OnWebSocketHandshakeStreamReady(
116 void HttpStreamFactoryImpl::Request::OnStreamFailed
    [all...]
http_stream_factory_impl_request.h 22 class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
24 Request(const GURL& url,
30 virtual ~Request();
32 // The GURL from the HttpRequestInfo the started the Request.
36 // Request. Note that this does not mean that SPDY is necessarily supported
42 // Attaches |job| to this request. Does not mean that Request will use |job|,
43 // but Request will own |job|.
46 // Marks completion of the request. Must be called before OnStreamReady().
47 // |job_net_log| is the BoundNetLog of the Job that fulfilled this request
    [all...]
  /external/chromium_org/remoting/host/setup/
oauth_client.h 37 // If a request is received while another one is being processed, it is
56 struct Request {
57 Request(const gaia::OAuthClientInfo& oauth_client_info,
60 virtual ~Request();
69 std::queue<Request> pending_requests_;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Request.h 23 class Request FINAL : public ScriptWrappable, public RefCounted<Request> {
25 static PassRefPtr<Request> create();
26 static PassRefPtr<Request> create(const Dictionary&);
27 static PassRefPtr<Request> create(const blink::WebServiceWorkerRequest&);
28 ~Request() { };
41 explicit Request(const RequestInit&);
42 explicit Request(const blink::WebServiceWorkerRequest&);
  /external/chromium_org/third_party/libaddressinput/chromium/
chrome_downloader_impl.cc 73 Request* request = new Request(url, fetcher.Pass(), downloaded.Pass()); local
74 request->fetcher->SaveResponseWithWriter(
76 new UnownedStringWriter(&request->data)));
77 requests_[request->fetcher.get()] = request;
78 request->fetcher->Start();
82 std::map<const net::URLFetcher*, Request*>::iterator request local
    [all...]
chrome_downloader_impl.h 38 struct Request {
39 Request(const std::string& url,
53 // Maps from active url fetcher to request metadata. The value is owned.
54 std::map<const net::URLFetcher*, Request*> requests_;
chrome_storage_impl.cc 38 for (std::vector<Request*>::iterator iter =
52 new Request(key, data_ready.Pass()));
66 ChromeStorageImpl::Request::Request(const std::string& key,
  /external/glide/library/src/main/java/com/bumptech/glide/request/
Request.java 1 package com.bumptech.glide.request;
3 import com.bumptech.glide.request.target.Target;
6 * A request that loads an asset for an {@link Target}.
8 public interface Request {
16 * Prevents any bitmaps being loaded from previous requests, releases any resources held by this request and
22 * Returns true if this request is running and has not completed or failed.
27 * Returns true if the request has successfully completed.
32 * Returns true if the request has failed.
  /external/junit/src/org/junit/runner/
Request.java 14 * <p>A <code>Request</code> is an abstract description of tests to be run. Older versions of
20 * <p>The flow when JUnit runs tests is that a <code>Request</code> specifies some tests to be run ->
21 * a {@link org.junit.runner.Runner} is created for each class implied by the <code>Request</code> ->
25 public abstract class Request {
27 * Create a <code>Request</code> that, when processed, will run a single test.
32 * @return a <code>Request</code> that will cause a single test be run
34 public static Request method(Class<?> clazz, String methodName) {
36 return Request.aClass(clazz).filterWith(method);
40 * Create a <code>Request</code> that, when processed, will run all the tests
43 * @return a <code>Request</code> that will cause all tests in the class to be ru
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winusb.h 61 UCHAR Request;
  /art/runtime/jdwp/
jdwp_request.cc 28 Request::Request(const uint8_t* bytes, uint32_t available) : p_(bytes) {
43 Request::~Request() {
46 void Request::CheckConsumed() {
54 std::string Request::ReadUtf8String() {
65 uint64_t Request::ReadValue(size_t width) {
77 int32_t Request::ReadSigned32(const char* what) {
83 uint32_t Request::ReadUnsigned32(const char* what) {
89 FieldId Request::ReadFieldId()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/dbus/
proxy_resolution_service_provider.cc 29 class Request {
31 explicit Request(const std::string& source_url)
32 : callback_(base::Bind(&Request::OnCompletion, base::Unretained(this))),
36 virtual ~Request() {}
57 DISALLOW_COPY_AND_ASSIGN(Request);
68 for (std::set<Request*>::iterator iter = all_requests_.begin();
70 Request* request = *iter; local
71 LOG(WARNING) << "Pending request for " << request->source_url_
85 Request* request = new Request(source_url); variable
    [all...]
  /external/chromium_org/chrome/browser/extensions/
test_blacklist.cc 31 void BlacklistStateFetcherMock::Request(const std::string& id,
  /external/chromium_org/chrome/browser/extensions/updater/
request_queue.h 21 // retry requests with some backoff policy. Each request has a
26 // - when a request is ready to be executed, RequestQueue removes the
27 // request from the queue, assigns it as active request, and calls
29 // - (optionally) when a request has completed unsuccessfully call
30 // RetryRequest to put the request back in the queue, using the
32 // next schedule this request.
33 // - call reset_active_request() to indicate that the active request has
35 // - call StartNextRequest to schedule the next pending request (if any).
45 // Returns the request that is currently being processed
87 linked_ptr<T> request; member in struct:extensions::RequestQueue::Request
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
sidenav_data_source_test.py 13 from servlet import Request
93 Request.ForTest('/H2.html'))
127 ServerInstance.ForTest(file_system), Request.ForTest('/H2.html'))
147 # Ensure Cron doesn't rely on request.
149 ServerInstance.ForTest(file_system), request=None)
patch_servlet.py 20 from servlet import Request, Response, Servlet
81 def __init__(self, request, delegate=None):
82 self._request = request
105 Request(path_without_issue,
render_servlet_test.py 12 from servlet import Request, Response
23 return RenderServlet(Request.ForTest(path, headers=headers, host=host),
servlet.py 26 class Request(object):
27 '''Request data.
36 return Request(path, host or 'http://developer.chrome.com', headers or {})
39 return 'Request(path=%s, host=%s, headers=%s)' % (
153 def __init__(self, request):
154 self._request = request
  /external/chromium_org/components/translate/core/browser/
translate_script.cc 54 void TranslateScript::Request(const RequestCallback& callback) {
59 // If there is already a request in progress, do nothing. |callback| will be
111 fetcher_->Request(
translate_script_unittest.cc 34 void Request() {
35 script_->Request(
54 Request();
111 Request();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakedtlsidentityservice.h 70 struct Request {
71 Request(const std::string& common_name,
78 typedef talk_base::TypedMessageData<Request> MessageData;
90 MessageData* msg = new MessageData(Request(common_name, observer));
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
request_manager.h 24 // Request type, passed to RequestManager::CreateRequest. For logging purposes.
35 // Converts a request type to human-readable format.
42 // Handles requests. Each request implementation must implement
48 // Called when the request is created. Executes the request implementation.
61 // request is aborted due to a timeout.
65 // Observes activities in the request manager.
70 // Called when the request is created.
73 // Called when the request is destroyed.
76 // Called when the request is executed
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
webserver.py 42 class Request(object):
43 """An HTTP request."""
56 """Internal server that throws if timed out waiting for a request."""
69 """Internal handler that just asks the server to handle the request."""
75 on_request(Request(self), Responder(self))
93 raise RuntimeError('Timed out waiting for http request')
129 def _OnRequest(self, request, responder):
130 path = request.GetPath().split('?')[0]
136 body = self._path_callback_map[path](request)
199 def _OnRequest(self, request, responder)
    [all...]
  /external/chromium_org/net/proxy/
mock_proxy_resolver.h 22 // user must call Request::CompleteNow() on a pending request to signal it.
25 class Request : public base::RefCounted<Request> {
27 Request(MockAsyncProxyResolverBase* resolver,
39 friend class base::RefCounted<Request>;
41 virtual ~Request();
71 typedef std::vector<scoped_refptr<Request> > RequestsList;
102 void RemovePendingRequest(Request* request);
    [all...]

Completed in 3429 milliseconds

12 3 4 5 6