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

  /external/chromium_org/net/disk_cache/simple/
simple_synchronous_entry.h 52 struct CRCRecord {
53 CRCRecord();
54 CRCRecord(int index_p, bool has_crc32_p, uint32 data_crc32_p);
116 // CRCRecord entries in |crc32s_to_write|.
118 scoped_ptr<std::vector<CRCRecord> > crc32s_to_write);
simple_synchronous_entry.cc 162 SimpleSynchronousEntry::CRCRecord::CRCRecord() : index(-1),
167 SimpleSynchronousEntry::CRCRecord::CRCRecord(int index_p,
388 scoped_ptr<std::vector<CRCRecord> > crc32s_to_write) {
389 for (std::vector<CRCRecord>::const_iterator it = crc32s_to_write->begin();
simple_entry_impl.cc 695 typedef SimpleSynchronousEntry::CRCRecord CRCRecord;
696 scoped_ptr<std::vector<CRCRecord> >
697 crc32s_to_write(new std::vector<CRCRecord>());
708 crc32s_to_write->push_back(CRCRecord(i, true, crc));
710 crc32s_to_write->push_back(CRCRecord(i, false, 0));
    [all...]

Completed in 79 milliseconds