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

  /external/chromium/net/disk_cache/
block_files.cc 175 block_files_.resize(kFirstAdditionlBlockFile);
194 for (unsigned int i = 0; i < block_files_.size(); i++) {
195 if (block_files_[i]) {
196 block_files_[i]->Release();
197 block_files_[i] = NULL;
200 block_files_.clear();
230 if (block_files_.size() - 1 < static_cast<unsigned int>(index)) {
232 int to_add = index - static_cast<int>(block_files_.size()) + 1;
233 block_files_.resize(block_files_.size() + to_add)
    [all...]
block_files.h 78 std::vector<MappedFile*> block_files_; // The actual files. member in class:disk_cache::BlockFiles
backend_impl.h 39 : path_(path), block_files_(path), mask_(0), max_size_(0),
46 : path_(path), block_files_(path), mask_(mask), max_size_(0),
281 BlockFiles block_files_; // Set of files used to store all data. member in class:disk_cache::BackendImpl
backend_impl.cc 305 if (!block_files_.Init(create_files))
426 if (!block_files_.CreateBlock(BLOCK_256, num_blocks, &entry_address)) {
433 if (!block_files_.CreateBlock(RANKINGS, 1, &node_address)) {
434 block_files_.DeleteBlock(entry_address, false);
444 block_files_.DeleteBlock(entry_address, false);
445 block_files_.DeleteBlock(node_address, false);
457 block_files_.GetFile(entry_address)->Store(cache_entry->entry());
458 block_files_.GetFile(node_address)->Store(cache_entry->rankings());
685 return block_files_.GetFile(address);
722 return block_files_.CreateBlock(block_type, block_count, block_address)
    [all...]
  /external/chromium/net/tools/dump_cache/
dump_files.cc 110 block_files_(FilePath::FromWStringHack(path)),
126 disk_cache::BlockFiles block_files_; member in class:__anon2650::CacheDumper
135 if (!block_files_.Init(false)) {
190 disk_cache::MappedFile* file = block_files_.GetFile(address);
206 disk_cache::MappedFile* file = block_files_.GetFile(address);

Completed in 3211 milliseconds