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

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.cc425 bool DecodeVarInt(StringPiece* slice, int64* value) { function in namespace:content
471 if (!DecodeVarInt(slice, &length) || length < 0)
490 if (!DecodeVarInt(slice, &length) || length < 0)
515 if (!DecodeVarInt(slice, &length) || length < 0)
604 if (!DecodeVarInt(slice, &count))
627 if (!DecodeVarInt(slice, &database_id))
631 if (!DecodeVarInt(slice, &blob_key))
653 if (!DecodeVarInt(slice, &length))
663 if (!DecodeVarInt(slice, &length) || length < 0)
672 if (!DecodeVarInt(slic
[all...]
H A Dindexed_db_leveldb_coding_unittest.cc272 TEST(IndexedDBLevelDBCodingTest, DecodeVarInt) {
292 EXPECT_TRUE(DecodeVarInt(&slice, &res));
297 EXPECT_FALSE(DecodeVarInt(&slice, &res));
300 EXPECT_FALSE(DecodeVarInt(&slice, &res));
305 EXPECT_TRUE(DecodeVarInt(&slice, &res));
H A Dindexed_db_backing_store.cc243 if (DecodeVarInt(&slice, found_int) && slice.empty())
523 if (!DecodeVarInt(&slice, &cur_number) || !slice.empty() ||
684 if (!DecodeVarInt(&slice, &key) ||
694 if (!DecodeVarInt(&slice, &size) || size < 0)
1857 if (!DecodeVarInt(&slice, &version)) {
2186 if (!DecodeVarInt(&slice, &version))
2936 if (!DecodeVarInt(&slice, &version)) {
3306 if (!DecodeVarInt(&slice, &version)) {
3370 if (!DecodeVarInt(&value_slice, &version)) {
3457 if (!DecodeVarInt(
[all...]
H A Dindexed_db_leveldb_coding.h54 CONTENT_EXPORT WARN_UNUSED_RESULT bool DecodeVarInt(base::StringPiece* slice,

Completed in 151 milliseconds