Searched defs:total_bytes_to_be_received (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/native_client_sdk/src/examples/api/url_loader/
H A Durl_loader_handler.cc69 int64_t total_bytes_to_be_received = 0; local
71 &total_bytes_to_be_received)) {
72 if (total_bytes_to_be_received > 0) {
73 url_response_body_.reserve(total_bytes_to_be_received);
/external/chromium_org/ppapi/thunk/
H A Dppb_url_loader_thunk.cc70 int64_t* total_bytes_to_be_received) {
75 memset(total_bytes_to_be_received, 0, sizeof(*total_bytes_to_be_received));
79 total_bytes_to_be_received);
68 GetDownloadProgress(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received) argument
/external/chromium_org/ppapi/proxy/
H A Dserialized_structs.h126 int64_t total_bytes_to_be_received; member in struct:ppapi::proxy::PPBURLLoader_UpdateProgress_Params
H A Durl_loader_resource.cc137 int64_t* total_bytes_to_be_received) {
140 *total_bytes_to_be_received = 0;
144 *total_bytes_to_be_received = total_bytes_to_be_received_;
318 int64_t total_bytes_to_be_received) {
322 total_bytes_to_be_received_ = total_bytes_to_be_received;
135 GetDownloadProgress( int64_t* bytes_received, int64_t* total_bytes_to_be_received) argument
313 OnPluginMsgUpdateProgress( const ResourceMessageReplyParams& params, int64_t bytes_sent, int64_t total_bytes_to_be_sent, int64_t bytes_received, int64_t total_bytes_to_be_received) argument
/external/chromium_org/ppapi/tests/
H A Dtest_url_loader.cc805 int64_t total_bytes_to_be_received = 0; local
807 loader.GetDownloadProgress(&bytes_received, &total_bytes_to_be_received);
808 if (total_bytes_to_be_received <= 0)
810 total_bytes_to_be_received);
811 if (bytes_received == total_bytes_to_be_received)
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
H A Ddrive.cc128 int64_t total_bytes_to_be_received = 0; local
130 &total_bytes_to_be_received)) {
131 if (total_bytes_to_be_received > 0) {
132 output->reserve(total_bytes_to_be_received);
/external/chromium_org/components/nacl/renderer/
H A Dppb_nacl_private_impl.cc1177 int64_t total_bytes_to_be_received) {
1183 total_bytes_to_be_received >= 0,
1185 total_bytes_to_be_received));
1175 ReportProgress(const std::string& url, int64_t total_bytes_received, int64_t total_bytes_to_be_received) argument
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1702 static PP_Bool Pnacl_M14_PPB_URLLoader_GetDownloadProgress(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received) { argument
1704 return iface->GetDownloadProgress(loader, bytes_received, total_bytes_to_be_received);
4933 .GetDownloadProgress = (PP_Bool (*)(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received))&Pnacl_M14_PPB_URLLoader_GetDownloadProgress,

Completed in 244 milliseconds