Home
last modified time | relevance | path

Searched refs:total_bytes_to_be_received (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/native_client_sdk/src/examples/api/url_loader/
Durl_loader_handler.cc68 int64_t total_bytes_to_be_received = 0; in OnOpen() local
70 &total_bytes_to_be_received)) { in OnOpen()
71 if (total_bytes_to_be_received > 0) { in OnOpen()
72 url_response_body_.reserve(total_bytes_to_be_received); in OnOpen()
/external/chromium_org/ppapi/thunk/
Dppb_url_loader_thunk.cc72 int64_t* total_bytes_to_be_received) { in GetDownloadProgress() argument
77 memset(total_bytes_to_be_received, 0, sizeof(*total_bytes_to_be_received)); in GetDownloadProgress()
81 total_bytes_to_be_received); in GetDownloadProgress()
Dppb_url_loader_api.h39 int64_t* total_bytes_to_be_received) = 0;
/external/chromium_org/ppapi/proxy/
Durl_loader_resource.cc137 int64_t* total_bytes_to_be_received) { in GetDownloadProgress() argument
140 *total_bytes_to_be_received = 0; in GetDownloadProgress()
144 *total_bytes_to_be_received = total_bytes_to_be_received_; in GetDownloadProgress()
318 int64_t total_bytes_to_be_received) { in OnPluginMsgUpdateProgress() argument
322 total_bytes_to_be_received_ = total_bytes_to_be_received; in OnPluginMsgUpdateProgress()
Durl_loader_resource.h56 int64_t* total_bytes_to_be_received) OVERRIDE;
99 int64_t total_bytes_to_be_received);
Dserialized_structs.h126 int64_t total_bytes_to_be_received; member
Dppapi_param_traits.cc311 ParamTraits<int64_t>::Write(m, p.total_bytes_to_be_received); in Write()
325 ParamTraits<int64_t>::Read(m, iter, &r->total_bytes_to_be_received); in Read()
/external/chromium_org/ppapi/cpp/
Durl_loader.cc66 int64_t* total_bytes_to_be_received) const { in GetDownloadProgress()
70 pp_resource(), bytes_received, total_bytes_to_be_received)); in GetDownloadProgress()
Durl_loader.h112 int64_t* total_bytes_to_be_received) const;
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/
Durl-loading.rst184 ``GetDownloadProgress`` sets ``total_bytes_to_be_received`` to -1. It is not a
185 problem if ``total_bytes_to_be_received`` is set to -1 or if
199 int64_t total_bytes_to_be_received = 0;
201 &total_bytes_to_be_received)) {
202 if (total_bytes_to_be_received > 0) {
203 url_response_body_.reserve(total_bytes_to_be_received);
/external/chromium_org/ppapi/c/trusted/
Dppb_url_loader_trusted.h38 int64_t total_bytes_to_be_received);
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
Ddrive.cc128 int64_t total_bytes_to_be_received = 0; in ReadUrl() local
130 &total_bytes_to_be_received)) { in ReadUrl()
131 if (total_bytes_to_be_received > 0) { in ReadUrl()
132 output->reserve(total_bytes_to_be_received); in ReadUrl()
/external/chromium_org/ppapi/c/
Dppb_url_loader.h152 int64_t* total_bytes_to_be_received);
/external/chromium_org/ppapi/tests/
Dtest_url_loader.cc807 int64_t total_bytes_to_be_received = 0; in TestUntendedLoad() local
809 loader.GetDownloadProgress(&bytes_received, &total_bytes_to_be_received); in TestUntendedLoad()
810 if (total_bytes_to_be_received <= 0) in TestUntendedLoad()
812 total_bytes_to_be_received); in TestUntendedLoad()
813 if (bytes_received == total_bytes_to_be_received) in TestUntendedLoad()
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Dfile_downloader.cc400 int64_t* total_bytes_to_be_received) const { in GetDownloadProgress()
402 total_bytes_to_be_received); in GetDownloadProgress()
Dfile_downloader.h139 int64_t* total_bytes_to_be_received) const;
Dplugin.h457 int64_t total_bytes_to_be_received);
Dplugin.cc1366 int64_t total_bytes_to_be_received) { in UpdateDownloadProgress() argument
1384 LengthComputable length_computable = (total_bytes_to_be_received >= 0) ? in UpdateDownloadProgress()
1391 total_bytes_to_be_received); in UpdateDownloadProgress()
/external/chromium_org/ppapi/api/trusted/
Dppb_url_loader_trusted.idl24 [in] int64_t total_bytes_to_be_received);
/external/chromium_org/ppapi/api/
Dppb_url_loader.idl139 * @param[in] total_bytes_to_be_received The total number of bytes to be
141 * <code>total_bytes_to_be_received</code> will be set to -1.
150 [out] int64_t total_bytes_to_be_received);
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
Dpnacl_shim.c1301 …ownloadProgress(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received) { in Pnacl_M14_PPB_URLLoader_GetDownloadProgress() argument
1303 return iface->GetDownloadProgress(loader, bytes_received, total_bytes_to_be_received); in Pnacl_M14_PPB_URLLoader_GetDownloadProgress()
4362 …Bool (*)(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received))&Pnacl_…