HomeSort by relevance Sort by last modified time
    Searched refs:total_bytes_to_be_received (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/ppapi/c/trusted/
ppb_url_loader_trusted.h 38 int64_t total_bytes_to_be_received);
  /external/chromium_org/ppapi/api/trusted/
ppb_url_loader_trusted.idl 24 [in] int64_t total_bytes_to_be_received);
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.cc 68 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/cpp/
url_loader.h 105 /// @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;
url_loader.cc 66 int64_t* total_bytes_to_be_received) const {
70 pp_resource(), bytes_received, total_bytes_to_be_received));
  /external/chromium_org/ppapi/thunk/
ppb_url_loader_thunk.cc 70 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);
ppb_url_loader_api.h 39 int64_t* total_bytes_to_be_received) = 0;
  /external/chromium_org/ppapi/c/
ppb_url_loader.h 143 * @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/api/
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/proxy/
url_loader_resource.h 56 int64_t* total_bytes_to_be_received) OVERRIDE;
99 int64_t total_bytes_to_be_received);
url_loader_resource.cc 137 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;
serialized_structs.h 126 int64_t total_bytes_to_be_received; member in struct:ppapi::proxy::PPBURLLoader_UpdateProgress_Params
ppapi_param_traits.cc 302 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/ppapi/native_client/src/trusted/plugin/
file_downloader.h 79 // and |total_bytes_to_be_received| will be set to the total number
81 // in which case |total_bytes_to_be_received| will be set to -1.
83 int64_t* total_bytes_to_be_received) const;
file_downloader.cc 164 int64_t* total_bytes_to_be_received) const {
166 total_bytes_to_be_received);
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 128 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/
test_url_loader.cc 805 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/
ppb_nacl_private_impl.cc     [all...]
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_shim.c     [all...]

Completed in 258 milliseconds