Searched defs:changestamp (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.h41 int64 changestamp)
44 changestamp_(changestamp) {
56 // Changestamp of the directory. The changestamp is used to determine if
58 int64 changestamp() const { return changestamp_; } function in class:drive::internal::DirectoryFetchInfo
144 int64 changestamp,
39 DirectoryFetchInfo(const std::string& local_id, const std::string& resource_id, int64 changestamp) argument
H A Dchange_list_loader_unittest.cc170 // Increment changestamp by 1.
189 // Increment changestamp by 1.
226 int64 changestamp = 0; local
227 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
228 EXPECT_LT(0, changestamp);
280 int64 changestamp = 0; local
281 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
282 EXPECT_EQ(drive_service_->about_resource().largest_change_id(), changestamp);
305 int64 changestamp = 0; local
306 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
[all...]
H A Dchange_list_processor.cc71 ", changestamp: " + base::Int64ToString(changestamp_));
132 // The changestamp appears in the first page of the change list.
133 // The changestamp does not appear in the full resource list.
168 // Add the largest changestamp for directories.
183 // Update changestamp.
198 int64 changestamp,
202 // Create the entry for "My Drive" directory with the latest changestamp.
211 root.mutable_directory_specific_info()->set_changestamp(changestamp);
372 // No need to refresh, but update the changestamp.
375 new_entry.directory_specific_info().changestamp());
197 ApplyEntryMap( int64 changestamp, scoped_ptr<google_apis::AboutResource> about_resource) argument
[all...]
H A Dchange_list_processor_unittest.cc118 // Applies the |changes| to |metadata_| as a full resource list of changestamp
133 // should contain their changestamp in themselves.
211 int64 changestamp = 0; local
212 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
213 EXPECT_EQ(kBaseResourceListChangestamp, changestamp);
243 int64 changestamp = 0; local
244 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
245 EXPECT_EQ(16730, changestamp);
278 int64 changestamp = 0; local
279 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetLargestChangestamp(&changestamp));
314 int64 changestamp = 0; local
347 int64 changestamp = 0; local
381 int64 changestamp = 0; local
429 int64 changestamp = 0; local
492 int64 changestamp = 0; local
[all...]
H A Dresource_metadata_unittest.cc25 // The changestamp of the resource metadata used in
174 int64 changestamp = 0; local
176 resource_metadata_->GetLargestChangestamp(&changestamp));
177 EXPECT_EQ(kChangestamp, changestamp);
673 int64 changestamp = 0; local
675 resource_metadata_->GetLargestChangestamp(&changestamp));
676 EXPECT_EQ(0, changestamp);
H A Dfile_system_unittest.cc208 // the changestamp to that of FakeDriveService, indicating the cache is
235 const int64 changestamp = param == USE_SERVER_TIMESTAMP ? local
238 resource_metadata->SetLargestChangestamp(changestamp));
660 // changestamp (i.e. the local metadata is up-to-date), so no request for
/external/chromium_org/google_apis/drive/
H A Dgdata_wapi_parser.h403 int64 changestamp() const { return changestamp_; } function in class:google_apis::ResourceEntry
463 void set_changestamp(int64 changestamp) { changestamp_ = changestamp; } argument
563 // The largest changestamp. Next time the resource list should be fetched
564 // from this changestamp.

Completed in 135 milliseconds