Searched refs:total_bytes_to_be_received (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/ppapi/c/trusted/
H A Dppb_url_loader_trusted.h38 int64_t total_bytes_to_be_received);
/external/chromium_org/ppapi/api/trusted/
H A Dppb_url_loader_trusted.idl24 [in] int64_t total_bytes_to_be_received);
/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
H A Dppb_url_loader_api.h39 int64_t* total_bytes_to_be_received) = 0;
/external/chromium_org/ppapi/c/
H A Dppb_url_loader.h143 * @param[in] total_bytes_to_be_received The total number of bytes to be
145 * <code>total_bytes_to_be_received</code> will be set to -1.
152 int64_t* total_bytes_to_be_received);
/external/chromium_org/ppapi/cpp/
H A Durl_loader.h105 /// @param[in] total_bytes_to_be_received The total number of bytes to be
107 /// <code>total_bytes_to_be_received</code> will be set to -1.
112 int64_t* total_bytes_to_be_received) const;
H A Durl_loader.cc66 int64_t* total_bytes_to_be_received) const {
70 pp_resource(), bytes_received, total_bytes_to_be_received));
/external/chromium_org/ppapi/api/
H A 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/proxy/
H A Durl_loader_resource.h56 int64_t* total_bytes_to_be_received) OVERRIDE;
99 int64_t total_bytes_to_be_received);
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
H A Dserialized_structs.h126 int64_t total_bytes_to_be_received; member in struct:ppapi::proxy::PPBURLLoader_UpdateProgress_Params
H A Dppapi_param_traits.cc302 ParamTraits<int64_t>::Write(m, p.total_bytes_to_be_received);
316 ParamTraits<int64_t>::Read(m, iter, &r->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/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/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 8117 milliseconds