/external/chromium_org/ppapi/cpp/ |
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...] |
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_response_info.h | 49 /// file remains valid until the <code>URLLoader</code> associated with this 55 /// the <code>URLLoader</code> has not been opened yet.
|
url_request_info.h | 26 /// A constructor used to allocate a new <code>URLLoader</code> in the 161 /// URLLoader::FollowRedirects() to follow the redirects only after examining 176 /// URLLoader::GetDownloadProgress(). 189 /// be able to poll the upload progress using URLLoader::GetUploadProgress().
|
/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
url_loader_success.html | 9 <title>PPAPI UrlLoader example</title> 12 <h1>PPAPI UrlLoader example</h1> 13 The PPAPI UrlLoader example fetches the contents of this page. If you are
|
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.
|
url_loader_handler.cc | 54 ReportResultAndDie(url_, "pp::URLLoader::Open() failed", false); 102 // The URLLoader just filled "result" number of bytes into our buffer. 109 url_, "pp::URLLoader::ReadResponseBody() result<0", false);
|
/external/chromium_org/ppapi/api/ |
ppb_url_loader.idl | 21 * -# Call Create() to create a URLLoader object. 38 * Create() creates a new <code>URLLoader</code> object. The 39 * <code>URLLoader</code> is associated with a particular instance, so that 46 * @return A <code>PP_Resource</code> corresponding to a URLLoader if 53 * IsURLLoader() determines if a resource is an <code>URLLoader</code>. 56 * <code>URLLoader</code>. 58 * @return <code>PP_TRUE</code> if the resource is a <code>URLLoader</code>, 60 * than <code>URLLoader</code>. 71 * <code>URLLoader</code>. 91 * <code>URLLoader</code> [all...] |
ppb_url_response_info.idl | 119 * remains valid until the <code>URLLoader</code> associated with this 127 * not requested or if the <code>URLLoader</code> has not been opened yet.
|
/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/c/ |
ppb_url_loader.h | 36 * -# Call Create() to create a URLLoader object. 53 * Create() creates a new <code>URLLoader</code> object. The 54 * <code>URLLoader</code> is associated with a particular instance, so that 61 * @return A <code>PP_Resource</code> corresponding to a URLLoader if 66 * IsURLLoader() determines if a resource is an <code>URLLoader</code>. 69 * <code>URLLoader</code>. 71 * @return <code>PP_TRUE</code> if the resource is a <code>URLLoader</code>, 73 * than <code>URLLoader</code>. 82 * <code>URLLoader</code>. 100 * <code>URLLoader</code> [all...] |
ppb_url_response_info.h | 130 * remains valid until the <code>URLLoader</code> associated with this 138 * not requested or if the <code>URLLoader</code> has not been opened yet.
|
/external/chromium_org/ppapi/examples/url_loader/ |
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.
|
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();
|
url_loader.html | 13 <title>URLLoader Example</title>
|
/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/api/trusted/ |
ppb_url_loader_trusted.idl | 16 * given URLLoader resource. 29 * Grant this URLLoader the capability to make unrestricted cross-origin
|
/external/chromium_org/ppapi/c/trusted/ |
ppb_url_loader_trusted.h | 30 * given URLLoader resource. 50 * Grant this URLLoader the capability to make unrestricted cross-origin
|
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/ |
url-loading.rst | 15 This chapter describes how to use the `URLLoader API 31 Contains ``URLLoader`` class for loading data from URLs 67 being retrieved using the ``URLLoader`` API. 80 Like many Pepper APIs, the ``URLLoader`` API includes a set of methods that 83 Note that methods in the namespace ``pp::URLLoader`` are part of the Pepper 84 ``URLLoader`` API, while the rest of the functions are part of the code in the 88 .. image:: /images/pepper-urlloader-api.png 92 #. The Native Client module calls ``pp::URLLoader::Open`` to begin opening the 97 ``URLLoader::ReadResponseBody`` to begin reading the response body with the 195 ReportResultAndDie(url_, "pp::URLLoader::Open() failed", false) [all...] |
/external/chromium_org/ppapi/tests/ |
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_url_loader.h | 18 class URLLoader; 32 std::string ReadEntireResponseBody(pp::URLLoader* loader,
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLClassLoaderTest.java | 254 URLClassLoader urlLoader = getURLClassLoader(tempPath1, tempPath2); 256 urlLoader.findResource("XXX")); 258 urlLoader.findResource(tempFile1.getName())); 260 urlLoader.findResource("Blah.txt")); 261 urlLoader = getURLClassLoader(tempPath1, tempPath2, tempPath3); 263 urlLoader.findResource("test1")); 265 urlLoader.findResource("test3"));
|
/external/chromium_org/remoting/client/plugin/ |
pepper_port_allocator.h | 18 // * PepperPortAllocator uses Pepper URLLoader API when creating
|
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/content/browser/fileapi/ |
browser_file_system_helper.cc | 123 // The path is to be attached to URLLoader so we grant read permission
|