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

  /external/chromium/net/http/
http_cache.h 156 struct NewEntry; // Info for an entry under construction.
174 typedef base::hash_map<std::string, NewEntry*> NewEntriesMap;
211 // Returns the NewEntry for the desired |key|. If an entry is not under
212 // construction already, a new NewEntry structure is created.
213 NewEntry* GetNewEntry(const std::string& key);
215 // Deletes a NewEntry.
216 void DeleteNewEntry(NewEntry* entry);
253 // list of an entry (NewEntry, active or doomed entry).
261 bool RemovePendingCallbackFromNewEntry(NewEntry* entry,
274 void OnIOComplete(int result, NewEntry* entry)
    [all...]
http_cache.cc 57 struct HttpCache::NewEntry {
58 NewEntry() : disk_entry(NULL), writer(NULL) {}
59 ~NewEntry() {}
110 BackendCallback(HttpCache* cache, NewEntry* entry)
121 NewEntry* entry_;
349 NewEntry* new_entry = GetNewEntry(key);
387 HttpCache::NewEntry* HttpCache::GetNewEntry(const std::string& key) {
394 NewEntry* entry = new NewEntry();
399 void HttpCache::DeleteNewEntry(NewEntry* entry)
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.h 223 int NewEntry(Addr address, EntryImpl** entry, bool* dirty);
backend_impl.cc 743 if (NewEntry(address, &cache_entry, &dirty))
1147 int BackendImpl::NewEntry(Addr address, EntryImpl** entry, bool* dirty) {
    [all...]
eviction.cc 200 Trace("NewEntry failed on Trim 0x%x", node->address().value());
421 if (backend_->NewEntry(Addr(node->Data()->contents), &entry, &dirty)) {
422 Trace("NewEntry failed on Trim 0x%x", node->address().value());

Completed in 257 milliseconds