Searched defs:tracker_ids (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dtask_dependency_manager.h25 std::vector<int64> tracker_ids; member in struct:sync_file_system::drive_backend::TaskBlocker
H A Dmetadata_database_index_on_disk_unittest.cc230 TrackerIDSet tracker_ids; local
233 tracker_ids = index()->GetFileTrackerIDsByFileID("file_id");
234 EXPECT_TRUE(tracker_ids.empty());
235 tracker_ids = index()->GetFileTrackerIDsByParentAndTitle(
237 EXPECT_TRUE(tracker_ids.empty());
245 tracker_ids = index()->GetFileTrackerIDsByFileID("file_id");
246 EXPECT_EQ(1U, tracker_ids.size());
247 EXPECT_EQ(kFileTrackerID, tracker_ids.active_tracker());
248 tracker_ids = index()->GetFileTrackerIDsByParentAndTitle(
250 EXPECT_EQ(1U, tracker_ids
278 std::vector<int64> tracker_ids = index()->GetAllTrackerIDs(); local
356 TrackerIDSet tracker_ids = index()->GetFileTrackerIDsByFileID("file_id"); local
420 TrackerIDSet tracker_ids = index()->GetFileTrackerIDsByParentAndTitle( local
513 TrackerIDSet tracker_ids = index()->GetFileTrackerIDsByParentAndTitle( local
[all...]
H A Dmetadata_database_index_on_disk.cc638 std::vector<int64> tracker_ids; local
648 tracker_ids.push_back(tracker_id);
650 return tracker_ids;
H A Dmetadata_database.cc1274 std::set<int64> tracker_ids; local
1280 tracker_ids.insert(*itr);
1283 for (std::set<int64>::iterator itr = tracker_ids.begin();
1284 itr != tracker_ids.end(); ++itr) {
1653 std::vector<int64> tracker_ids(index_->GetAllTrackerIDs());
1654 for (std::vector<int64>::const_iterator itr = tracker_ids.begin();
1655 itr != tracker_ids.end(); ++itr) {

Completed in 228 milliseconds