Home
last modified time | relevance | path

Searched refs:next_file (Results 1 – 4 of 4) sorted by relevance

/external/chromium/net/disk_cache/
Dblock_files.cc176 if (header->next_file && (empty_blocks < disk_cache::kMaxBlocks / 10)) { in NeedToGrowBlockFile()
494 int new_file = header->next_file; in NextFile()
507 header->next_file = new_file; in NextFile()
529 while (header->next_file) { in RemoveEmptyFile()
531 Addr address(BLOCK_256, 1, header->next_file, 0); in RemoveEmptyFile()
532 MappedFile* next_file = GetFile(address); in RemoveEmptyFile() local
533 if (!next_file) in RemoveEmptyFile()
537 reinterpret_cast<BlockFileHeader*>(next_file->buffer()); in RemoveEmptyFile()
541 int file_index = header->next_file; in RemoveEmptyFile()
542 header->next_file = next_header->next_file; in RemoveEmptyFile()
[all …]
Ddisk_format.h182 int16 next_file; // Next file when this one is full. member
/external/jhead/
Djhead.c508 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:
/external/chromium/net/tools/dump_cache/
Ddump_files.cc91 printf("next file id: %d\n", header.next_file); in DumpBlockHeader()