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

  /external/chromium_org/net/disk_cache/blockfile/
disk_format_base.h 53 int16 next_file; // Next file when this one is full. member in struct:disk_cache::BlockFileHeader
block_files.cc 197 if (header_->next_file && (empty_blocks < kMaxBlocks / 10)) {
251 return header_->next_file;
576 int new_file = header->next_file;
589 header->next_file = new_file;
611 while (header->next_file) {
613 Addr address(BLOCK_256, 1, header->next_file, 0);
614 MappedFile* next_file = GetFile(address); local
615 if (!next_file)
619 reinterpret_cast<BlockFileHeader*>(next_file->buffer());
622 // Delete next_file and remove it from the chain
    [all...]
  /external/jhead/
jhead.c 508 if (!memcmp(finddata.name, ".",2)) goto next_file;
509 if (!memcmp(finddata.name, "..",3)) goto next_file;
510 if (finddata.attrib & _A_SUBDIR) goto next_file;
516 if (--a == 0) goto next_file;
526 next_file:
    [all...]
  /external/fio/
io_u.c 1011 unsigned int old_next_file = td->next_file;
1017 f = td->files[td->next_file];
1019 td->next_file++;
1020 if (td->next_file >= td->o.nr_files)
1021 td->next_file = 0;
1054 } while (td->next_file != old_next_file);
    [all...]
fio.h 134 unsigned int next_file; member in union:thread_data::__anon25215
  /external/chromium_org/net/tools/dump_cache/
dump_files.cc 135 printf("next file id: %d\n", header.next_file);
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.cc 926 uint64_t next_file = 0; local
965 next_file = edit.next_file_number_;
1001 manifest_file_number_ = next_file;
1002 next_file_number_ = next_file + 1;
    [all...]

Completed in 234 milliseconds