Searched refs:bag_of_chips (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/sync/syncable/
H A Ddirectory.h133 std::string bag_of_chips; member in struct:syncer::syncable::Directory::PersistedKernelInfo
234 std::string bag_of_chips() const;
235 void set_bag_of_chips(const std::string& bag_of_chips);
H A Ddirectory.cc991 string Directory::bag_of_chips() const { function in class:syncer::syncable::Directory
993 return kernel_->persisted_info.bag_of_chips;
996 void Directory::set_bag_of_chips(const string& bag_of_chips) { argument
998 if (kernel_->persisted_info.bag_of_chips == bag_of_chips)
1000 kernel_->persisted_info.bag_of_chips = bag_of_chips;
H A Ddirectory_backing_store.cc268 "bag_of_chips = ?"));
271 s1.BindBlob(2, info.bag_of_chips.data(), info.bag_of_chips.size());
390 // Version 80 migration is adding the bag_of_chips column.
526 "notification_state, bag_of_chips) "
529 "bag_of_chips "
587 "SELECT store_birthday, next_id, cache_guid, bag_of_chips "
595 s.ColumnBlobAsString(3, &(info->kernel_info.bag_of_chips));
1094 "ALTER TABLE share_info ADD COLUMN bag_of_chips BLOB"))
1097 "UPDATE share_info SET bag_of_chips
[all...]
H A Dsyncable_unittest.cc296 EXPECT_EQ(bag_of_chips_string, dir()->bag_of_chips());
307 EXPECT_EQ(bag_of_chips2_string, dir()->bag_of_chips());
318 EXPECT_EQ(bag_of_chips3_string, dir()->bag_of_chips());
H A Ddirectory_backing_store_unittest.cc1831 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
1894 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
2000 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
2107 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
2230 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
2352 "ult -2, cache_guid TEXT , notification_state BLOB, bag_of_chips "
2532 "fault -2, cache_guid TEXT, notification_state BLOB, bag_of_chips BLOB"
2648 "lt -2, cache_guid TEXT, notification_state BLOB, bag_of_chips BLOB);"
2763 "lt -2, cache_guid TEXT, notification_state BLOB, bag_of_chips BLOB);"
2877 "lt -2, cache_guid TEXT, notification_state BLOB, bag_of_chips BLO
[all...]
/external/chromium_org/sync/engine/
H A Dsyncer_proto_util.cc253 msg->mutable_bag_of_chips()->ParseFromString(dir->bag_of_chips());
552 std::string bag_of_chips;
553 if (response.new_bag_of_chips().SerializeToString(&bag_of_chips))
554 dir->set_bag_of_chips(bag_of_chips);

Completed in 6155 milliseconds