HomeSort by relevance Sort by last modified time
    Searched refs:sync_status (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/components/user_prefs/
pref_registry_syncable.cc 79 PrefSyncStatus sync_status) {
82 sync_status);
87 PrefSyncStatus sync_status) {
90 sync_status);
95 PrefSyncStatus sync_status) {
98 sync_status);
103 PrefSyncStatus sync_status) {
106 sync_status);
112 PrefSyncStatus sync_status) {
115 sync_status);
    [all...]
pref_registry_syncable.h 47 base::Callback<void(const char* path, const PrefSyncStatus sync_status)>
68 PrefSyncStatus sync_status);
71 PrefSyncStatus sync_status);
74 PrefSyncStatus sync_status);
77 PrefSyncStatus sync_status);
80 PrefSyncStatus sync_status);
82 PrefSyncStatus sync_status);
84 PrefSyncStatus sync_status);
87 PrefSyncStatus sync_status);
90 PrefSyncStatus sync_status);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
file_status_observer.h 25 SyncFileStatus sync_status,
mock_remote_file_sync_service.cc 73 SyncFileStatus sync_status,
77 OnFileStatusChanged(url, sync_status,
mock_remote_file_sync_service.h 71 SyncFileStatus sync_status,
sync_file_system_service.h 149 SyncFileStatus sync_status,
sync_file_system_service.cc 336 SyncStatusCode sync_status,
659 SyncFileStatus sync_status,
664 OnFileSynced(url, sync_status, action_taken, direction));
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner.cc 47 LocalFileSyncStatus* sync_status)
48 : sync_status_(sync_status),
79 if ((*iter)->IsRunnable(sync_status())) {
84 task->Start(sync_status());
96 DCHECK(sync_status()->IsWriting(target_paths[i]));
97 sync_status()->EndWriting(target_paths[i]);
syncable_file_operation_runner_unittest.cc 88 LocalFileSyncStatus* sync_status() { function in class:sync_file_system::SyncableFileOperationRunnerTest
89 return file_system_.backend()->sync_context()->sync_status();
151 sync_status()->StartSyncing(URL(kFile));
152 ASSERT_FALSE(sync_status()->IsWritable(URL(kFile)));
172 sync_status()->EndSyncing(URL(kFile));
173 ASSERT_TRUE(sync_status()->IsWritable(URL(kFile)));
193 sync_status()->StartSyncing(URL(kDir));
194 ASSERT_FALSE(sync_status()->IsWritable(URL(kDir)));
221 sync_status()->EndSyncing(URL(kDir));
222 ASSERT_TRUE(sync_status()->IsWritable(URL(kDir)))
    [all...]
syncable_file_operation_runner.h 56 LocalFileSyncStatus* sync_status);
79 LocalFileSyncStatus* sync_status() const { return sync_status_; } function in class:sync_file_system::SyncableFileOperationRunner
local_file_sync_context.cc 154 const bool syncable = sync_status()->IsSyncable(url);
157 sync_status()->StartSyncing(url);
180 if (sync_status()->IsSyncable(url)) {
205 DCHECK(!sync_status()->IsWritable(url));
206 DCHECK(!sync_status()->IsWriting(url));
239 if (!sync_status()) {
245 DCHECK(!sync_status()->IsWritable(url));
246 DCHECK(!sync_status()->IsWriting(url));
393 LocalFileSyncStatus* LocalFileSyncContext::sync_status() const { function in class:sync_file_system::LocalFileSyncContext
403 sync_status()->IsWriting(url_waiting_sync_on_io_))
    [all...]
local_file_sync_context.h 154 LocalFileSyncStatus* sync_status() const;
local_file_sync_service_unittest.cc 167 SyncStatusCode sync_status = SYNC_STATUS_UNKNOWN; local
170 AssignAndQuitCallback(&run_loop, &sync_status));
172 return sync_status;
canned_syncable_file_system.cc 675 backend()->sync_context()->sync_status()->AddObserver(this);
  /external/chromium_org/chrome/browser/chromeos/
language_preferences.h 41 user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status; member in struct:chromeos::language_prefs::LanguageMultipleChoicePreference
51 user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status; member in struct:chromeos::language_prefs::LanguageBooleanPrefs
63 user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status; member in struct:chromeos::language_prefs::LanguageIntegerRangePreference
128 user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status; member in struct:chromeos::language_prefs::PinyinIntegerPref
preferences.cc 218 language_prefs::kChewingBooleanPrefs[i].sync_status);
224 language_prefs::kChewingMultipleChoicePrefs[i].sync_status);
229 language_prefs::kChewingHsuSelKeyType.sync_status);
235 language_prefs::kChewingIntegerPrefs[i].sync_status);
250 language_prefs::kPinyinBooleanPrefs[i].sync_status);
256 language_prefs::kPinyinIntegerPrefs[i].sync_status);
267 language_prefs::kMozcBooleanPrefs[i].sync_status);
273 language_prefs::kMozcMultipleChoicePrefs[i].sync_status);
279 language_prefs::kMozcIntegerPrefs[i].sync_status);
    [all...]
  /external/chromium_org/chrome/browser/prefs/
pref_service_syncable.cc 166 const user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status) {
168 if (sync_status == user_prefs::PrefRegistrySyncable::SYNCABLE_PREF) {
170 } else if (sync_status ==
174 NOTREACHED() << "invalid sync_status: " << sync_status;
pref_service_syncable.h 94 const user_prefs::PrefRegistrySyncable::PrefSyncStatus sync_status);
  /external/chromium_org/ppapi/proxy/
host_dispatcher.h 53 SyncMessageStatusReceiver* sync_status,
host_dispatcher.cc 64 SyncMessageStatusReceiver* sync_status,
67 sync_status_(sync_status),
  /external/chromium_org/chrome/browser/ui/webui/options/
browser_options_handler.cc     [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_file_sync_service.h 136 virtual void NotifyLastOperationStatus(SyncStatusCode sync_status) OVERRIDE;
179 SyncStatusCode sync_status,
300 SyncFileStatus sync_status,
drive_file_sync_service.cc 396 SyncStatusCode sync_status,
398 switch (sync_status) {
    [all...]
drive_file_sync_service_fake_unittest.cc 171 SyncFileStatus sync_status,
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 701 final String[] errors = context.getResources().getStringArray(R.array.sync_status);
    [all...]

Completed in 1007 milliseconds

1 2