HomeSort by relevance Sort by last modified time
    Searched refs:URLLoader (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/ppapi/cpp/
url_loader.h 20 /// URLLoader provides an API for loading URLs.
23 class URLLoader : public Resource {
26 /// <code>URLLoader</code> object.
27 URLLoader() {}
33 /// <code>URLLoader</code> resource.
34 explicit URLLoader(PP_Resource resource);
36 /// A constructor used to allocate a new URLLoader in the browser. The
41 explicit URLLoader(const InstanceHandle& instance);
43 /// The copy constructor for <code>URLLoader</code>.
45 /// @param other A <code>URLLoader</code> to be copied
    [all...]
url_loader.cc 27 URLLoader::URLLoader(PP_Resource resource) : Resource(resource) {
30 URLLoader::URLLoader(const InstanceHandle& instance) {
37 URLLoader::URLLoader(const URLLoader& other) : Resource(other) {
40 int32_t URLLoader::Open(const URLRequestInfo& request_info,
49 int32_t URLLoader::FollowRedirect(const CompletionCallback& cc) {
56 bool URLLoader::GetUploadProgress(int64_t* bytes_sent
    [all...]
instance.h 36 class URLLoader;
226 /// The given url_loader corresponds to a <code>URLLoader</code> object that
228 /// GetResponseInfo(). If you want to use the <code>URLLoader</code> to read
236 /// @param[in] url_loader An open <code>URLLoader</code> instance.
239 virtual bool HandleDocumentLoad(const URLLoader& url_loader);
instance.cc 70 bool Instance::HandleDocumentLoad(const URLLoader& /*url_loader*/) {
module.cc 121 return PP_FromBool(instance->HandleDocumentLoad(URLLoader(pp_url_loader)));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ControlTest.java 396 ClassLoader URLLoader = ResourceBundleTest.getURLClassLoader();
399 final URL srcFile = URLLoader.getResource(control
415 assertNull(control.newBundle(className, frFR, CLASS, URLLoader, false));
425 if (null != URLLoader
427 ResourceBundle.clearCache(URLLoader);
429 PROPERTIES, URLLoader, false);
436 PROPERTIES, URLLoader, false);
439 PROPERTIES, URLLoader, true);
448 URLLoader, true);
455 bundle = control.newBundle(propertiesName, frFR, PROPERTIES, URLLoader,
    [all...]
  /external/chromium_org/ppapi/examples/url_loader/
stream_to_file.cc 5 // This example shows how to use the URLLoader in "stream to file" mode where
39 // reference to the URLLoader object when this class goes out of scope (so
40 // the URLLoader outlives "this"), and you have an outstanding read
41 // request, the URLLoader will write into invalid memory.
52 // Callback for the URLLoader to tell us it finished opening the connection.
67 pp::URLLoader loader_;
93 loader_ = pp::URLLoader(this);
141 loader_ = pp::URLLoader();
streaming.cc 5 // This example shows how to use the URLLoader in streaming mode (reading to
36 // reference to the URLLoader object when this class goes out of scope (so
37 // the URLLoader outlives "this"), and you have an outstanding read
38 // request, the URLLoader will write into invalid memory.
49 // Callback for the URLLoader to tell us it finished opening the connection.
55 // Callback for the URLLoader to tell us when it finished a read.
64 pp::URLLoader loader_;
87 loader_ = pp::URLLoader(this);
142 // The URLLoader just filled "result" number of bytes into our buffer.
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.h 20 // pp::URLLoader.GetDownloadProgress() is used to to allocate the memory
46 // Callback for the pp::URLLoader::Open().
47 // Called by pp::URLLoader when response headers are received or when an
48 // error occurs (in response to the call of pp::URLLoader::Open()).
50 // <ppapi/cpp/url_loader.h> for more information about pp::URLLoader.
53 // Callback for the pp::URLLoader::ReadResponseBody().
79 pp::URLLoader url_loader_; // URLLoader provides an API to download URLs.
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_interface.cc 28 DEFINE_INTERFACE_FUNC(URLLoader)
57 REQUEST_INTERFACE(URLLoader, URLLOADER)
  /external/chromium_org/ppapi/tests/
test_url_loader.h 18 class URLLoader;
32 std::string ReadEntireResponseBody(pp::URLLoader* loader,
test_url_loader.cc 28 REGISTER_TEST_CASE(URLLoader);
173 std::string TestURLLoader::ReadEntireResponseBody(pp::URLLoader* loader,
182 return ReportError("URLLoader::ReadResponseBody", callback.result());
196 pp::URLLoader loader(instance_);
203 return "URLLoader::GetResponseInfo returned null";
214 return "URLLoader::ReadResponseBody returned unexpected content length";
216 return "URLLoader::ReadResponseBody returned unexpected content";
326 pp::URLLoader loader(instance_);
453 pp::URLLoader loader(instance_);
460 return "URLLoader::GetResponseInfo returned null"
    [all...]
test_file_ref.cc 60 pp::URLLoader loader(instance_);
202 pp::URLLoader loader(instance_);
236 pp::URLLoader loader(instance_);
277 pp::URLLoader loader(instance_);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin.h 42 class URLLoader;
70 virtual bool HandleDocumentLoad(const pp::URLLoader& url_loader);
429 // URLLoader resource is non-is_null().
430 pp::URLLoader document_load_to_replay_;
file_downloader.h 44 // A class that wraps PPAPI URLLoader and FileIO functionality for downloading
192 pp::URLLoader url_loader_;
file_downloader.cc 122 url_loader_ = pp::URLLoader(instance_);
plugin.cc 728 bool Plugin::HandleDocumentLoad(const pp::URLLoader& url_loader) {
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_port_allocator.cc 26 // URLLoader. Normally the response from URL loader is smaller than 1kB.
63 scoped_ptr<pp::URLLoader> relay_url_loader_;
209 relay_url_loader_.reset(new pp::URLLoader(instance_));
233 LOG(WARNING) << "URLLoader failed: " << result;
  /external/chromium_org/chrome/test/ppapi/
ppapi_browsertest.cc 491 #define MAYBE_PPAPIURLLoader URLLoader
493 // URLLoader tests.
527 #define MAYBE_OutOfProcessURLLoader URLLoader
558 IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, URLLoader) {
592 #define MAYBE_NaCl_Glibc_URLLoader URLLoader
624 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, URLLoader) {
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 105 pp::URLLoader url_loader(instance);

Completed in 1413 milliseconds