Searched refs:IndexFreeListKey (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.h328 class IndexFreeListKey { class in namespace:content
330 IndexFreeListKey();
331 static bool Decode(base::StringPiece* slice, IndexFreeListKey* result);
337 int Compare(const IndexFreeListKey& other);
H A Dindexed_db_leveldb_coding.cc121 // => existence implies the index id is in the free list [IndexFreeListKey]
1059 return Compare<IndexFreeListKey>(
1613 IndexFreeListKey::IndexFreeListKey() : object_store_id_(-1), index_id_(-1) {} function in class:content::IndexFreeListKey
1615 bool IndexFreeListKey::Decode(StringPiece* slice, IndexFreeListKey* result) {
1633 std::string IndexFreeListKey::Encode(int64 database_id,
1644 std::string IndexFreeListKey::EncodeMaxKey(int64 database_id,
1650 int IndexFreeListKey::Compare(const IndexFreeListKey
[all...]
H A Dindexed_db_leveldb_coding_unittest.cc929 keys.push_back(IndexFreeListKey::Encode(1, 1, kMinimumIndexId));
930 keys.push_back(IndexFreeListKey::EncodeMaxKey(1, 1));
931 keys.push_back(IndexFreeListKey::Encode(1, 2, kMinimumIndexId));
932 keys.push_back(IndexFreeListKey::EncodeMaxKey(1, 2));
H A Dindexed_db_backing_store.cc1804 IndexFreeListKey::Encode(database_id, object_store_id, 0),
1805 IndexFreeListKey::EncodeMaxKey(database_id, object_store_id),

Completed in 1559 milliseconds