/external/chromium_org/net/disk_cache/v3/ |
block_bitmaps.cc | 39 block_files_.resize(kFirstAdditionalBlockFile); 131 for (unsigned int i = 0; i < block_files_.size(); i++) { 132 if (block_files_[i]) { 133 block_files_[i]->Release(); 134 block_files_[i] = NULL; 137 block_files_.clear(); 190 DCHECK(block_files_.size() >= 4); 196 if (static_cast<unsigned int>(file_index) >= block_files_.size() || 197 !block_files_[file_index]) { 202 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index)) [all...] |
backend_worker.h | 52 BlockFiles block_files_; // Set of files used to store all data. member in class:disk_cache::BackendImpl
|
backend_impl_v3.cc | 86 block_files_(path), 112 block_files_(path), 194 return block_files_.CreateBlock(block_type, block_count, block_address); 595 if (!block_files_.CreateBlock(BLOCK_256, num_blocks, &entry_address)) { 602 if (!block_files_.CreateBlock(RANKINGS, 1, &node_address)) { 603 block_files_.DeleteBlock(entry_address, false); 614 block_files_.DeleteBlock(entry_address, false); 615 block_files_.DeleteBlock(node_address, false); 932 block_files_.CloseFiles(); 956 block_files_.CloseFiles() [all...] |
backend_worker.cc | 111 block_files_(path), 197 if (!block_files_.Init(create_files)) 249 block_files_.CloseFiles(); 296 block_files_.CloseFiles();
|
backend_impl_v3.h | 251 BlockFiles block_files_; // Set of files used to store all data. member in class:disk_cache::BackendImpl
|
/external/chromium/net/disk_cache/ |
block_files.cc | 206 block_files_.resize(kFirstAdditionalBlockFile); 225 DCHECK(block_files_.size() >= 4); 231 if (static_cast<unsigned int>(file_index) >= block_files_.size() || 232 !block_files_[file_index]) { 237 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index)); 238 return block_files_[file_index]; 313 for (unsigned int i = 0; i < block_files_.size(); i++) { 314 if (block_files_[i]) { 315 block_files_[i]->Release(); 316 block_files_[i] = NULL [all...] |
block_files.h | 91 std::vector<MappedFile*> block_files_; // The actual files. member in class:disk_cache::BlockFiles
|
backend_impl.cc | 343 block_files_(path), 369 block_files_(path), 491 if (!block_files_.Init(create_files)) 532 block_files_.CloseFiles(); 740 if (!block_files_.CreateBlock(BLOCK_256, num_blocks, &entry_address)) { 747 if (!block_files_.CreateBlock(RANKINGS, 1, &node_address)) { 748 block_files_.DeleteBlock(entry_address, false); 759 block_files_.DeleteBlock(entry_address, false); 760 block_files_.DeleteBlock(node_address, false); 772 block_files_.GetFile(entry_address)->Store(cache_entry->entry()) [all...] |
backend_impl.h | 346 BlockFiles block_files_; // Set of files used to store all data. member in class:disk_cache::BackendImpl
|
/external/chromium_org/net/disk_cache/ |
block_files.cc | 243 block_files_.resize(kFirstAdditionalBlockFile); 263 DCHECK(block_files_.size() >= 4); 269 if (static_cast<unsigned int>(file_index) >= block_files_.size() || 270 !block_files_[file_index]) { 275 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index)); 276 return block_files_[file_index]; 353 for (unsigned int i = 0; i < block_files_.size(); i++) { 354 if (block_files_[i]) { 355 block_files_[i]->Release(); 356 block_files_[i] = NULL [all...] |
block_files.h | 139 std::vector<MappedFile*> block_files_; // The actual files. member in class:disk_cache::BlockFiles
|
backend_impl.cc | 147 block_files_(path), 173 block_files_(path), 287 if (!block_files_.Init(create_files)) 344 block_files_.CloseFiles(); 581 if (!block_files_.CreateBlock(BLOCK_256, num_blocks, &entry_address)) { 588 if (!block_files_.CreateBlock(RANKINGS, 1, &node_address)) { 589 block_files_.DeleteBlock(entry_address, false); 600 block_files_.DeleteBlock(entry_address, false); 601 block_files_.DeleteBlock(node_address, false); 681 return block_files_.GetFile(address) [all...] |
backend_impl.h | 359 BlockFiles block_files_; // Set of files used to store all data. member in class:disk_cache::BackendImpl
|
/external/chromium/net/tools/dump_cache/ |
dump_files.cc | 112 block_files_(FilePath::FromWStringHack(path)), 131 disk_cache::BlockFiles block_files_; member in class:__anon5645::CacheDumper 141 if (!block_files_.Init(false)) { 192 disk_cache::MappedFile* file = block_files_.GetFile(address); 217 disk_cache::MappedFile* file = block_files_.GetFile(address);
|
/external/chromium_org/net/tools/dump_cache/ |
dump_files.cc | 157 block_files_(path), 176 disk_cache::BlockFiles block_files_; member in class:__anon11560::CacheDumper 186 if (!block_files_.Init(false)) { 236 disk_cache::MappedFile* file = block_files_.GetFile(address); 261 disk_cache::MappedFile* file = block_files_.GetFile(address);
|