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

/external/chromium_org/net/disk_cache/
H A Ddisk_format_base.h52 int16 next_file; // Next file when this one is full. member in struct:disk_cache::BlockFileHeader
H A Dblock_files.cc196 if (header_->next_file && (empty_blocks < kMaxBlocks / 10)) {
250 return header_->next_file;
578 int new_file = header->next_file;
591 header->next_file = new_file;
613 while (header->next_file) {
615 Addr address(BLOCK_256, 1, header->next_file, 0);
616 MappedFile* next_file = GetFile(address); local
617 if (!next_file)
621 reinterpret_cast<BlockFileHeader*>(next_file->buffer());
624 // Delete next_file an
[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.cc940 uint64_t next_file = 0; local
979 next_file = edit.next_file_number_;
1015 manifest_file_number_ = next_file;
1016 next_file_number_ = next_file + 1;

Completed in 598 milliseconds