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

  /external/chromium_org/content/renderer/
history_serialization.cc 43 output->file_length = input.fileLength;
49 output->file_length = input.fileLength;
68 element.file_length,
75 element.file_length,
  /external/e2fsprogs/ext2ed/
file_com.c 38 file_info.file_length=ptr->i_size;
266 if (file_info.file_offset+offset>file_info.file_length-1) break;
270 if (file_info.file_offset+offset+i>file_info.file_length-1) {
290 if (file_info.file_offset+offset+i>file_info.file_length-1) break;
331 if (file_info.file_offset+last_offset > file_info.file_length-1)
332 last_offset=file_info.file_length-1-file_info.file_offset;
387 wprintw (show_win,"File Offset %ld of %ld.",file_info.file_offset,file_info.file_length-1);
dir_com.c 67 info_ptr->file_length=ptr->i_size;
108 while (info.file_offset < info.file_length) { /* While we haven't reached the end */
126 if (info.file_offset >= info.file_length) break;
529 wprintw (show_win,"Directory Offset %ld of %ld. ",file_info.file_offset,file_info.file_length-1);
ext2ed.h 136 long file_offset,file_length; member in struct:struct_file_info
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_loader.cpp 299 ELF::Addr file_length = file_end - file_page_start; local
301 LOG("%s: file_offset=%p file_length=%p start_address=%p end_address=%p\n",
304 file_length,
306 seg_page_start + PAGE_END(file_length));
308 if (file_length != 0) {
310 file_length,
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_loader.cpp 293 ELF::Addr file_length = file_end - file_page_start; local
295 LOG("%s: file_offset=%p file_length=%p start_address=%p end_address=%p\n",
298 file_length,
300 seg_page_start + PAGE_END(file_length));
302 if (file_length != 0) {
304 file_length,
  /external/chromium_org/content/common/
page_state_serialization.cc 36 int file_length,
42 element.file_length = file_length;
50 int file_length,
56 element.file_length = file_length;
430 WriteInteger64(element.file_length, obj);
436 WriteInteger64(element.file_length, obj);
468 int64 file_length = ReadInteger64(obj); local
470 AppendFileRangeToHttpBody(http_body, file_path, file_start, file_length,
475 int64 file_length = ReadInteger64(obj); local
    [all...]
page_state_serialization.h 26 int64 file_length; member in struct:content::ExplodedHttpBodyElement
page_state_serialization_unittest.cc 52 EXPECT_EQ(a.file_length, b.file_length);
128 e2.file_length = 1024;
  /system/core/libziparchive/
zip_archive.cc 450 ZipArchive* archive, off64_t file_length,
452 const off64_t search_start = file_length - read_amount;
494 if (calculated_length != file_length) {
496 static_cast<int64_t>(file_length - calculated_length));
551 off64_t file_length = lseek64(fd, 0, SEEK_END); local
552 if (file_length == -1) {
557 if (file_length > (off64_t) 0xffffffff) {
558 ALOGV("Zip: zip file too long %" PRId64, static_cast<int64_t>(file_length));
562 if (file_length < static_cast<off64_t>(sizeof(EocdRecord))) {
563 ALOGV("Zip: length %" PRId64 " is too small to be zip", static_cast<int64_t>(file_length));
    [all...]
  /external/chromium_org/components/search_provider_logos/
logo_cache_unittest.cc 91 int64 file_length = file.GetLength(); local
92 ASSERT_NE(file_length, 0);
93 file.SetLength(file_length - 1);
  /external/chromium_org/storage/browser/blob/
blob_url_request_job.cc 258 uint64 file_length = result; local
262 if (item_offset > file_length) {
267 uint64 max_length = file_length - item_offset;
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
storage_api.py 838 def _force_close(self, file_length=None):
839 """Close this buffer on file_length.
841 Finalize this upload immediately on file_length.
847 file_length: file length. Must match what has been uploaded. If None,
850 if file_length is None:
851 file_length = self._get_offset_from_gcs() + 1
852 self._send_data('', 0, file_length)
  /bionic/linker/
linker_phdr.cpp 357 ElfW(Addr) file_length = file_end - file_page_start;
359 if (file_length != 0) {
361 file_length,
  /art/runtime/
elf_file.cc 168 size_t file_length = static_cast<size_t>(temp_file_length); local
169 if (file_length < sizeof(Elf32_Ehdr)) {
171 "%zd bytes: '%s'", file_length, sizeof(Elf32_Ehdr),
186 if (file_length < program_header_size) {
188 "header of %zd bytes: '%s'", file_length,
1114 size_t file_length = static_cast<size_t>(temp_file_length); local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
openjpeg.c 99 OPJ_OFF_T file_length = 0; local
102 file_length = (OPJ_OFF_T)OPJ_FTELL(p_file);
105 return (OPJ_UINT64)file_length;

Completed in 497 milliseconds