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

  /external/chromium_org/webkit/browser/appcache/
appcache_database.h 54 struct EntryRecord {
55 EntryRecord() : cache_id(0), flags(0), response_id(0), response_size(0) {}
116 int64 cache_id, std::vector<EntryRecord>* records);
118 const GURL& url, std::vector<EntryRecord>* records);
119 bool FindEntry(int64 cache_id, const GURL& url, EntryRecord* record);
120 bool InsertEntry(const EntryRecord* record);
122 const std::vector<EntryRecord>& records);
179 void ReadEntryRecord(const sql::Statement& statement, EntryRecord* record);
appcache.h 115 const std::vector<AppCacheDatabase::EntryRecord>& entries,
125 std::vector<AppCacheDatabase::EntryRecord>* entries,
appcache.cc 153 const std::vector<AppCacheDatabase::EntryRecord>& entries,
162 const AppCacheDatabase::EntryRecord& entry = entries.at(i);
194 std::vector<AppCacheDatabase::EntryRecord>* entries,
209 entries->push_back(AppCacheDatabase::EntryRecord());
210 AppCacheDatabase::EntryRecord& record = entries->back();
appcache_storage_impl_unittest.cc 615 std::vector<AppCacheDatabase::EntryRecord> entry_records;
687 AppCacheDatabase::EntryRecord entry_record;
724 std::vector<AppCacheDatabase::EntryRecord> entry_records;
752 AppCacheDatabase::EntryRecord entry_record;
770 AppCacheDatabase::EntryRecord entry_record2;
788 AppCacheDatabase::EntryRecord entry_record;
815 AppCacheDatabase::EntryRecord entry_record;
    [all...]
appcache_database.cc 526 int64 cache_id, std::vector<EntryRecord>* records) {
539 records->push_back(EntryRecord());
548 const GURL& url, std::vector<EntryRecord>* records) {
561 records->push_back(EntryRecord());
570 int64 cache_id, const GURL& url, EntryRecord* record) {
592 bool AppCacheDatabase::InsertEntry(const EntryRecord* record) {
611 const std::vector<EntryRecord>& records) {
617 std::vector<EntryRecord>::const_iterator iter = records.begin();
938 const sql::Statement& statement, EntryRecord* record) {
    [all...]
appcache_storage_impl.cc 390 std::vector<AppCacheDatabase::EntryRecord> entry_records_;
684 std::vector<AppCacheDatabase::EntryRecord>::const_iterator entry_iter =
789 AppCacheDatabase::EntryRecord,
790 AppCacheDatabase::EntryRecord,
797 const AppCacheDatabase::EntryRecord& lhs,
798 const AppCacheDatabase::EntryRecord& rhs) {
802 int compute_value(const AppCacheDatabase::EntryRecord& entry) {
955 std::vector<AppCacheDatabase::EntryRecord> entries;
963 std::vector<AppCacheDatabase::EntryRecord>::iterator iter;
    [all...]
appcache_database_unittest.cc 119 AppCacheDatabase::EntryRecord entry;
143 std::vector<AppCacheDatabase::EntryRecord> found;
    [all...]
appcache_unittest.cc 581 std::vector<AppCacheDatabase::EntryRecord> entries;
  /external/chromium_org/net/disk_cache/v3/
disk_format_v3.h 155 struct EntryRecord {
172 COMPILE_ASSERT(sizeof(EntryRecord) == 104, bad_EntryRecord);

Completed in 1078 milliseconds