Searched defs:next_file (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/net/disk_cache/
H A Ddisk_format_base.h51 int16 next_file; // Next file when this one is full. member in struct:disk_cache::BlockFileHeader
H A Dblock_files.cc189 if (header_->next_file && (empty_blocks < kMaxBlocks / 10)) {
542 int new_file = header->next_file;
555 header->next_file = new_file;
577 while (header->next_file) {
579 Addr address(BLOCK_256, 1, header->next_file, 0);
580 MappedFile* next_file = GetFile(address); local
581 if (!next_file)
585 reinterpret_cast<BlockFileHeader*>(next_file->buffer());
588 // Delete next_file and remove it from the chain.
589 int file_index = header->next_file;
[all...]
/external/chromium/net/disk_cache/
H A Dblock_files.cc176 if (header->next_file && (empty_blocks < disk_cache::kMaxBlocks / 10)) {
494 int new_file = header->next_file;
507 header->next_file = new_file;
529 while (header->next_file) {
531 Addr address(BLOCK_256, 1, header->next_file, 0);
532 MappedFile* next_file = GetFile(address); local
533 if (!next_file)
537 reinterpret_cast<BlockFileHeader*>(next_file->buffer());
540 // Delete next_file and remove it from the chain.
541 int file_index = header->next_file;
[all...]
H A Ddisk_format.h182 int16 next_file; // Next file when this one is full. member in struct:disk_cache::BlockFileHeader
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_set.cc860 uint64_t next_file = 0; local
899 next_file = edit.next_file_number_;
935 manifest_file_number_ = next_file;
936 next_file_number_ = next_file + 1;

Completed in 109 milliseconds