/external/chromium_org/net/disk_cache/simple/ |
simple_version_upgrade_unittest.cc | 104 for (uint64 entry_hash = 0; entry_hash < kEntries; ++entry_hash) { 107 base::StringPrintf("%016" PRIx64 "_%1d", entry_hash, index); 110 base::StringPrintf(" %" PRIx64, implicit_cast<uint64>(entry_hash)); 123 for (uint64 entry_hash = 0; entry_hash < kEntries; ++entry_hash) { 126 base::StringPrintf("%016" PRIx64 "_%1d", entry_hash, index); 129 base::StringPrintf(" %" PRIx64, implicit_cast<uint64>(entry_hash)); [all...] |
simple_util.h | 48 std::string GetFilenameFromEntryHashAndFileIndex(uint64 entry_hash, 52 std::string GetSparseFilenameFromEntryHash(uint64 entry_hash);
|
simple_backend_impl.cc | 254 active_entries_.erase(entry->entry_hash()); 257 void SimpleBackendImpl::OnDoomStart(uint64 entry_hash) { 259 CHECK_EQ(0u, entries_pending_doom_.count(entry_hash)); 261 std::make_pair(entry_hash, std::vector<Closure>())); 264 void SimpleBackendImpl::OnDoomComplete(uint64 entry_hash) { 266 CHECK_EQ(1u, entries_pending_doom_.count(entry_hash)); 268 entries_pending_doom_.find(entry_hash); 291 const uint64 entry_hash = (*mass_doom_entry_hashes)[i]; local 293 CHECK(active_entries_.count(entry_hash) == 0 || 294 entries_pending_doom_.count(entry_hash) == 0 295 << "The entry 0x" << std::hex << entry_hash local 352 const uint64 entry_hash = simple_util::GetEntryHashKey(key); local 382 const uint64 entry_hash = simple_util::GetEntryHashKey(key); local 401 const uint64 entry_hash = simple_util::GetEntryHashKey(key); local 606 uint64 entry_hash = entry_list->back(); local [all...] |
simple_index.h | 92 void Insert(uint64 entry_hash); 93 void Remove(uint64 entry_hash); 96 bool Has(uint64 entry_hash) const; 100 bool UseIfExists(uint64 entry_hash); 107 bool UpdateEntrySize(uint64 entry_hash, int entry_size); 111 static void InsertInEntrySet(uint64 entry_hash, 170 // This stores all the entry_hash of entries that are removed during
|
simple_backend_impl.h | 74 // The entry for |entry_hash| is being doomed; the backend will not attempt 75 // run new operations for this |entry_hash| until the Doom is completed. 76 void OnDoomStart(uint64 entry_hash); 78 // The entry for |entry_hash| has been successfully doomed, we can now allow 81 void OnDoomComplete(uint64 entry_hash); 141 uint64 entry_hash, 148 int OpenEntryFromHash(uint64 entry_hash, 152 // Doom the entry corresponding to |entry_hash|, if it's active or currently 155 int DoomEntryFromHash(uint64 entry_hash, const CompletionCallback & callback);
|
simple_net_log_parameters.cc | 22 dict->SetString("entry_hash", 23 base::StringPrintf("%#016" PRIx64, entry->entry_hash()));
|
simple_util.cc | 80 std::string GetFilenameFromEntryHashAndFileIndex(uint64 entry_hash, 82 return base::StringPrintf("%016" PRIx64 "_%1d", entry_hash, file_index); 85 std::string GetSparseFilenameFromEntryHash(uint64 entry_hash) { 86 return base::StringPrintf("%016" PRIx64 "_s", entry_hash);
|
simple_synchronous_entry.h | 117 uint64 entry_hash, 124 uint64 entry_hash, 132 uint64 entry_hash); 206 uint64 entry_hash); 298 uint64 entry_hash, 301 uint64 entry_hash);
|
simple_index.cc | 260 void SimpleIndex::Insert(uint64 entry_hash) { 266 entry_hash, EntryMetadata(base::Time::Now(), 0), &entries_set_); 268 removed_entries_.erase(entry_hash); 272 void SimpleIndex::Remove(uint64 entry_hash) { 274 EntrySet::iterator it = entries_set_.find(entry_hash); 281 removed_entries_.insert(entry_hash); 291 bool SimpleIndex::UseIfExists(uint64 entry_hash) { 295 EntrySet::iterator it = entries_set_.find(entry_hash); 353 bool SimpleIndex::UpdateEntrySize(uint64 entry_hash, int entry_size) { 355 EntrySet::iterator it = entries_set_.find(entry_hash); 423 const uint64 entry_hash = it->first; local [all...] |
simple_synchronous_entry.cc | 229 const uint64 entry_hash, 233 new SimpleSynchronousEntry(cache_type, path, "", entry_hash); 254 const uint64 entry_hash, 257 DCHECK_EQ(entry_hash, GetEntryHashKey(key)); 259 new SimpleSynchronousEntry(cache_type, path, key, entry_hash); 275 uint64 entry_hash) { 276 const bool deleted_well = DeleteFilesForEntryHash(path, entry_hash); 721 const uint64 entry_hash) 724 entry_hash_(entry_hash), [all...] |
simple_entry_impl.h | 54 uint64 entry_hash, 70 uint64 entry_hash() const { return entry_hash_; } function in class:disk_cache::SimpleEntryImpl
|
simple_entry_impl.cc | 165 const uint64 entry_hash, 173 entry_hash_(entry_hash), [all...] |
/bionic/libc/netbsd/resolv/ |
res_cache.c | 1146 entry_hash( const Entry* e ) function [all...] |