/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
D | url_loader_handler.cc | 68 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/ |
D | ppb_url_loader_thunk.cc | 72 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()
|
D | ppb_url_loader_api.h | 39 int64_t* total_bytes_to_be_received) = 0;
|
/external/chromium_org/ppapi/proxy/ |
D | url_loader_resource.cc | 137 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()
|
D | url_loader_resource.h | 56 int64_t* total_bytes_to_be_received) OVERRIDE; 99 int64_t total_bytes_to_be_received);
|
D | serialized_structs.h | 126 int64_t total_bytes_to_be_received; member
|
D | ppapi_param_traits.cc | 311 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/ |
D | url_loader.cc | 66 int64_t* total_bytes_to_be_received) const { in GetDownloadProgress() 70 pp_resource(), bytes_received, total_bytes_to_be_received)); in GetDownloadProgress()
|
D | url_loader.h | 112 int64_t* total_bytes_to_be_received) const;
|
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/ |
D | url-loading.rst | 184 ``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/ |
D | ppb_url_loader_trusted.h | 38 int64_t total_bytes_to_be_received);
|
/external/chromium_org/native_client_sdk/src/examples/demo/drive/ |
D | drive.cc | 128 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/ |
D | ppb_url_loader.h | 152 int64_t* total_bytes_to_be_received);
|
/external/chromium_org/ppapi/tests/ |
D | test_url_loader.cc | 807 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/ |
D | file_downloader.cc | 400 int64_t* total_bytes_to_be_received) const { in GetDownloadProgress() 402 total_bytes_to_be_received); in GetDownloadProgress()
|
D | file_downloader.h | 139 int64_t* total_bytes_to_be_received) const;
|
D | plugin.h | 457 int64_t total_bytes_to_be_received);
|
D | plugin.cc | 1366 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/ |
D | ppb_url_loader_trusted.idl | 24 [in] int64_t total_bytes_to_be_received);
|
/external/chromium_org/ppapi/api/ |
D | ppb_url_loader.idl | 139 * @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/ |
D | pnacl_shim.c | 1301 …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_…
|