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

  /external/chromium/net/disk_cache/
block_files.cc 176 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...]
disk_format.h 182 int16 next_file; // Next file when this one is full. member in struct:disk_cache::BlockFileHeader

Completed in 364 milliseconds