HomeSort by relevance Sort by last modified time
    Searched defs:disk_entry (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/http/
http_cache.h 115 static bool ReadResponseInfo(disk_cache::Entry* disk_entry,
122 static bool WriteResponseInfo(disk_cache::Entry* disk_entry,
162 disk_cache::Entry* disk_entry; member in struct:net::HttpCache::ActiveEntry
199 // Creates a new ActiveEntry and starts tracking it. |disk_entry| is the disk
203 disk_cache::Entry* disk_entry);
http_cache.cc 42 : disk_entry(e),
49 if (disk_entry)
50 disk_entry->Close();
58 NewEntry() : disk_entry(NULL), writer(NULL) {}
61 disk_cache::Entry* disk_entry; member in struct:net::HttpCache::NewEntry
249 bool HttpCache::ReadResponseInfo(disk_cache::Entry* disk_entry,
252 int size = disk_entry->GetDataSize(kResponseInfoIndex);
255 int rv = disk_entry->ReadData(kResponseInfoIndex, 0, buffer, size, NULL);
266 bool HttpCache::WriteResponseInfo(disk_cache::Entry* disk_entry,
278 return disk_entry->WriteData(kResponseInfoIndex, 0, data, len, NULL
    [all...]

Completed in 56 milliseconds