/external/chromium_org/ppapi/cpp/ |
D | url_loader.cc | 27 URLLoader::URLLoader(PP_Resource resource) : Resource(resource) { in URLLoader() function in pp::URLLoader 30 URLLoader::URLLoader(const InstanceHandle& instance) { in URLLoader() function in pp::URLLoader 37 URLLoader::URLLoader(const URLLoader& other) : Resource(other) { in URLLoader() function in pp::URLLoader 40 int32_t URLLoader::Open(const URLRequestInfo& request_info, in Open() 49 int32_t URLLoader::FollowRedirect(const CompletionCallback& cc) { in FollowRedirect() 56 bool URLLoader::GetUploadProgress(int64_t* bytes_sent, in GetUploadProgress() 64 bool URLLoader::GetDownloadProgress( in GetDownloadProgress() 73 URLResponseInfo URLLoader::GetResponseInfo() const { in GetResponseInfo() 81 int32_t URLLoader::ReadResponseBody(void* buffer, in ReadResponseBody() 90 int32_t URLLoader::FinishStreamingToFile(const CompletionCallback& cc) { in FinishStreamingToFile() [all …]
|
D | url_loader.h | 23 class URLLoader : public Resource { 27 URLLoader() {} in URLLoader() function 34 explicit URLLoader(PP_Resource resource); 41 explicit URLLoader(const InstanceHandle& instance); 46 URLLoader(const URLLoader& other);
|
D | instance.h | 39 class URLLoader; variable 242 virtual bool HandleDocumentLoad(const URLLoader& url_loader);
|
/external/chromium_org/ppapi/api/ |
D | 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 …]
|
D | 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/pdf/ |
D | document_loader.h | 28 virtual pp::URLLoader CreateURLLoader() = 0; 44 bool Init(const pp::URLLoader& loader, 103 pp::URLLoader loader_;
|
D | out_of_process_instance.h | 122 virtual pp::URLLoader CreateURLLoader(); 166 void LoadUrlInternal(const std::string& url, pp::URLLoader* loader, 171 pp::URLLoader CreateURLLoaderInternal(); 214 pp::URLLoader embed_loader_; 215 pp::URLLoader embed_preview_loader_; 278 pp::URLLoader form_loader_;
|
D | instance.h | 66 virtual bool HandleDocumentLoad(const pp::URLLoader& loader) OVERRIDE; 160 virtual pp::URLLoader CreateURLLoader(); 254 void LoadUrlInternal(const std::string& url, pp::URLLoader* loader, 259 pp::URLLoader CreateURLLoaderInternal(); 346 pp::URLLoader embed_loader_; 347 pp::URLLoader embed_preview_loader_; 460 pp::URLLoader form_loader_;
|
D | preview_mode_client.cc | 111 pp::URLLoader PreviewModeClient::CreateURLLoader() { in CreateURLLoader() 113 return pp::URLLoader(); in CreateURLLoader()
|
D | pdf_engine.h | 138 virtual pp::URLLoader CreateURLLoader() = 0; 200 virtual bool HandleDocumentLoad(const pp::URLLoader& loader) = 0;
|
/external/chromium_org/ppapi/examples/url_loader/ |
D | stream_to_file.cc | 67 pp::URLLoader loader_; 93 loader_ = pp::URLLoader(this); in StartRequest() 141 loader_ = pp::URLLoader(); in OnReadComplete()
|
D | streaming.cc | 64 pp::URLLoader loader_; 87 loader_ = pp::URLLoader(this); in StartRequest()
|
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/ |
D | url-loading.rst | 15 This section describes how to use the `URLLoader API 29 ``URLLoader`` class for loading data from URLs 64 being retrieved using the ``URLLoader`` API. 77 Like many Pepper APIs, the ``URLLoader`` API includes a set of methods that 80 Note that methods in the namespace ``pp::URLLoader`` are part of the Pepper 81 ``URLLoader`` API, while the rest of the functions are part of the code in the 89 #. The Native Client module calls ``pp::URLLoader::Open`` to begin opening the 94 ``URLLoader::ReadResponseBody`` to begin reading the response body with the 192 ReportResultAndDie(url_, "pp::URLLoader::Open() failed", false);
|
/external/chromium_org/mojo/services/public/interfaces/network/ |
D | url_loader.mojom | 30 // value is just a suggestion. The URLLoader may choose to ignore this value. 71 // redirect. Call the |FollowRedirect| method on the URLLoader instance to 82 // Set to true if the URLLoader is still working. Set to false once an error 91 interface URLLoader { 102 // Query status about the URLLoader.
|
D | network_service.mojom | 12 CreateURLLoader(URLLoader&? loader);
|
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
D | ps_interface.cc | 28 DEFINE_INTERFACE_FUNC(URLLoader) in DEFINE_INTERFACE_FUNC() 57 REQUEST_INTERFACE(URLLoader, URLLOADER)
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
D | plugin.h | 40 class URLLoader; variable 69 virtual bool HandleDocumentLoad(const pp::URLLoader& url_loader);
|
/external/chromium_org/ppapi/tests/ |
D | test_url_loader.cc | 28 REGISTER_TEST_CASE(URLLoader); 174 std::string TestURLLoader::ReadEntireResponseBody(pp::URLLoader* loader, in ReadEntireResponseBody() 197 pp::URLLoader loader(instance_); in LoadAndCompareBody() 327 pp::URLLoader loader(instance_); in Open() 454 pp::URLLoader loader(instance_); in TestStreamToFile() 720 pp::URLLoader loader(instance_); in TestAuditURLRedirect() 758 rv = pp::URLLoader(instance_).Open(request, callback.GetCallback()); in TestAbortCalls() 767 pp::URLLoader loader(instance_); in TestAbortCalls() 796 pp::URLLoader loader(instance_); in TestUntendedLoad()
|
D | test_url_loader.h | 18 class URLLoader; variable 32 std::string ReadEntireResponseBody(pp::URLLoader* loader,
|
/external/chromium_org/ppapi/api/trusted/ |
D | ppb_url_loader_trusted.idl | 16 * given URLLoader resource. 29 * Grant this URLLoader the capability to make unrestricted cross-origin
|
/external/chromium_org/mojo/services/network/ |
D | network_service_impl.h | 24 virtual void CreateURLLoader(InterfaceRequest<URLLoader> loader) OVERRIDE;
|
D | network_service_impl.cc | 23 void NetworkServiceImpl::CreateURLLoader(InterfaceRequest<URLLoader> loader) { in CreateURLLoader()
|
D | url_loader_impl.h | 20 class URLLoaderImpl : public InterfaceImpl<URLLoader>,
|
/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
D | url_loader_handler.h | 79 pp::URLLoader url_loader_; // URLLoader provides an API to download URLs.
|
/external/chromium_org/remoting/client/plugin/ |
D | pepper_port_allocator.cc | 56 scoped_ptr<pp::URLLoader> relay_url_loader_; 122 relay_url_loader_.reset(new pp::URLLoader(instance_)); in SendSessionRequest()
|