Home | History | Annotate | Download | only in drive_backend

Lines Matching refs:batch

82   leveldb::WriteBatch batch;
83 batch.Put(kDatabaseVersionKey, "4");
84 batch.Put(kServiceMetadataKey, "service_metadata");
85 batch.Put(kFileMetadataKeyPrefix, "file_metadata");
86 batch.Put(kFileTrackerKeyPrefix, "file_tracker");
87 batch.Put(kAppRootIDByAppIDKeyPrefix, "app_root_id");
88 batch.Put(kActiveTrackerIDByFileIDKeyPrefix, "active_id_by_file");
89 batch.Put(kTrackerIDByFileIDKeyPrefix, "tracker_id_by_file");
90 batch.Put(kMultiTrackerByFileIDKeyPrefix, "multi_tracker_by_file");
91 batch.Put(kActiveTrackerIDByParentAndTitleKeyPrefix, "active_id_by_path");
92 batch.Put(kTrackerIDByParentAndTitleKeyPrefix, "tracker_id_by_path");
93 batch.Put(kMultiBackingParentAndTitleKeyPrefix, "multi_tracker_by_path");
94 batch.Put(kDirtyIDKeyPrefix, "dirty");
95 batch.Put(kDemotedDirtyIDKeyPrefix, "demoted_dirty");
97 leveldb::Status status = db->Write(leveldb::WriteOptions(), &batch);