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.cc68 int64_t total_bytes_to_be_received = 0; local
70 &total_bytes_to_be_received)) {
71 if (total_bytes_to_be_received > 0) {
72 url_response_body_.reserve(total_bytes_to_be_received);
/external/chromium_org/ppapi/thunk/
H A Dppb_url_loader_thunk.cc72 int64_t* total_bytes_to_be_received) {
77 memset(total_bytes_to_be_received, 0, sizeof(*total_bytes_to_be_received));
81 total_bytes_to_be_received);
70 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.h111 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_;
310 int64_t total_bytes_to_be_received) {
314 total_bytes_to_be_received_ = total_bytes_to_be_received;
135 GetDownloadProgress( int64_t* bytes_received, int64_t* total_bytes_to_be_received) argument
305 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.cc819 int64_t total_bytes_to_be_received = 0; local
821 loader.GetDownloadProgress(&bytes_received, &total_bytes_to_be_received);
822 if (total_bytes_to_be_received <= 0)
824 total_bytes_to_be_received);
825 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/ppapi/native_client/src/trusted/plugin/
H A Dplugin.cc1468 int64_t total_bytes_to_be_received) {
1486 LengthComputable length_computable = (total_bytes_to_be_received >= 0) ?
1493 total_bytes_to_be_received);
1462 UpdateDownloadProgress( PP_Instance pp_instance, PP_Resource pp_resource, int64_t , int64_t , int64_t 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.c1163 static PP_Bool Pnacl_M14_PPB_URLLoader_GetDownloadProgress(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received) { argument
1165 return iface->GetDownloadProgress(loader, bytes_received, total_bytes_to_be_received);
4151 .GetDownloadProgress = (PP_Bool (*)(PP_Resource loader, int64_t* bytes_received, int64_t* total_bytes_to_be_received))&Pnacl_M14_PPB_URLLoader_GetDownloadProgress,

Completed in 528 milliseconds