/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
D | url_loader_handler.cc | 69 int64_t total_bytes_to_be_received = 0; in OnOpen() local 71 &total_bytes_to_be_received)) { in OnOpen() 72 if (total_bytes_to_be_received > 0) { in OnOpen() 73 url_response_body_.reserve(total_bytes_to_be_received); in OnOpen()
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_url_loader_thunk.cc | 70 int64_t* total_bytes_to_be_received) { in GetDownloadProgress() argument 75 memset(total_bytes_to_be_received, 0, sizeof(*total_bytes_to_be_received)); in GetDownloadProgress() 79 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 | 302 ParamTraits<int64_t>::Write(m, p.total_bytes_to_be_received); in Write() 316 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 | 181 ``GetDownloadProgress`` sets ``total_bytes_to_be_received`` to -1. It is not a 182 problem if ``total_bytes_to_be_received`` is set to -1 or if 196 int64_t total_bytes_to_be_received = 0; 198 &total_bytes_to_be_received)) { 199 if (total_bytes_to_be_received > 0) { 200 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 | 805 int64_t total_bytes_to_be_received = 0; in TestUntendedLoad() local 807 loader.GetDownloadProgress(&bytes_received, &total_bytes_to_be_received); in TestUntendedLoad() 808 if (total_bytes_to_be_received <= 0) in TestUntendedLoad() 810 total_bytes_to_be_received); in TestUntendedLoad() 811 if (bytes_received == total_bytes_to_be_received) in TestUntendedLoad()
|
/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/components/nacl/renderer/ |
D | ppb_nacl_private_impl.cc | 1177 int64_t total_bytes_to_be_received) { in ReportProgress() argument 1183 total_bytes_to_be_received >= 0, in ReportProgress() 1185 total_bytes_to_be_received)); in ReportProgress()
|
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/ |
D | pnacl_shim.c | 1702 …ownloadProgress(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received) { in Pnacl_M14_PPB_URLLoader_GetDownloadProgress() argument 1704 return iface->GetDownloadProgress(loader, bytes_received, total_bytes_to_be_received); in Pnacl_M14_PPB_URLLoader_GetDownloadProgress() 4933 …Bool (*)(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received))&Pnacl_…
|