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

  /external/chromium_org/sync/syncable/
directory.h 121 std::string bag_of_chips; member in struct:syncer::syncable::Directory::PersistedKernelInfo
212 std::string bag_of_chips() const;
213 void set_bag_of_chips(const std::string& bag_of_chips);
directory.cc 852 string Directory::bag_of_chips() const { function in class:syncer::syncable::Directory
854 return kernel_->persisted_info.bag_of_chips;
857 void Directory::set_bag_of_chips(const string& bag_of_chips) {
859 if (kernel_->persisted_info.bag_of_chips == bag_of_chips)
861 kernel_->persisted_info.bag_of_chips = bag_of_chips;
    [all...]
directory_backing_store.cc 249 "bag_of_chips = ?"));
252 s1.BindBlob(2, info.bag_of_chips.data(), info.bag_of_chips.size());
365 // Version 80 migration is adding the bag_of_chips column.
483 "notification_state, bag_of_chips) "
486 "bag_of_chips "
544 "SELECT store_birthday, next_id, cache_guid, bag_of_chips "
552 s.ColumnBlobAsString(3, &(info->kernel_info.bag_of_chips));
    [all...]
syncable_unittest.cc     [all...]
directory_backing_store_unittest.cc     [all...]
  /external/chromium_org/sync/engine/
syncer_proto_util.cc 251 msg->mutable_bag_of_chips()->ParseFromString(dir->bag_of_chips());
533 std::string bag_of_chips;
534 if (response.new_bag_of_chips().SerializeToString(&bag_of_chips))
535 dir->set_bag_of_chips(bag_of_chips);

Completed in 38 milliseconds