Searched defs:number_of_bytes (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/ppapi/shared_impl/
H A Durl_request_info_data.cc22 number_of_bytes(-1),
30 number_of_bytes(-1),
35 int64_t number_of_bytes,
41 number_of_bytes(number_of_bytes),
33 BodyItem(Resource* file_ref, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time) argument
H A Durl_request_info_data.h29 int64_t number_of_bytes,
45 int64_t number_of_bytes; member in struct:ppapi::URLRequestInfoData::BodyItem
/external/chromium_org/ppapi/thunk/
H A Dppb_url_request_info_thunk.cc54 int64_t number_of_bytes,
62 number_of_bytes,
51 AppendFileToBody(PP_Resource request, PP_Resource file_ref, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time) argument
/external/chromium_org/content/renderer/pepper/
H A Durl_request_info_util.cc52 int64_t number_of_bytes,
88 number_of_bytes,
199 item.number_of_bytes,
49 AppendFileRefToBody(PP_Instance instance, PP_Resource resource, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time, WebHTTPBody* http_body) argument
/external/chromium_org/ppapi/proxy/
H A Durl_request_info_resource.cc84 int64_t number_of_bytes,
91 if (number_of_bytes == 0)
95 if (start_offset < 0 || number_of_bytes < -1)
101 number_of_bytes,
81 AppendFileToBody( PP_Resource file_ref, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time) argument
/external/chromium_org/sdch/open-vcdiff/src/
H A Dheaderparser.h62 // Moves the parsing position forward by number_of_bytes.
63 void Advance(size_t number_of_bytes);
73 // Jumps the parsing position so that there are now number_of_bytes
76 void FinishExcept(size_t number_of_bytes);
164 void Advance(size_t number_of_bytes) { argument
165 return parseable_chunk_->Advance(number_of_bytes);
H A Dheaderparser.cc26 void ParseableChunk::Advance(size_t number_of_bytes) { argument
27 if (number_of_bytes > UnparsedSize()) {
28 VCD_DFATAL << "Internal error: position advanced by " << number_of_bytes
34 position_ += number_of_bytes;
53 void ParseableChunk::FinishExcept(size_t number_of_bytes) { argument
54 if (number_of_bytes > UnparsedSize()) {
56 << number_of_bytes << " is greater than unparsed data size "
61 position_ = end_ - number_of_bytes;
/external/chromium_org/content/browser/download/
H A Ddownload_browsertest.cc495 bool DataReceivedFilter(int number_of_bytes, DownloadItem* download) { argument
496 return download->GetReceivedBytes() >= number_of_bytes;
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1751 static PP_Bool Pnacl_M14_PPB_URLRequestInfo_AppendFileToBody(PP_Resource request, PP_Resource file_ref, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time) { argument
1753 return iface->AppendFileToBody(request, file_ref, start_offset, number_of_bytes, expected_last_modified_time);
4945 .AppendFileToBody = (PP_Bool (*)(PP_Resource request, PP_Resource file_ref, int64_t start_offset, int64_t number_of_bytes, PP_Time expected_last_modified_time))&Pnacl_M14_PPB_URLRequestInfo_AppendFileToBody

Completed in 146 milliseconds