OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnWriteEnabled
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chrome/browser/sync_file_system/local/
mock_sync_status_observer.h
20
MOCK_METHOD1(
OnWriteEnabled
, void(const fileapi::FileSystemURL& url));
local_file_sync_status.h
40
virtual void
OnWriteEnabled
(const fileapi::FileSystemURL& url) = 0;
syncable_file_operation_runner.h
61
virtual void
OnWriteEnabled
(const fileapi::FileSystemURL& url) OVERRIDE;
syncable_file_operation_runner.cc
64
void SyncableFileOperationRunner::
OnWriteEnabled
(const FileSystemURL& url) {
local_file_sync_status.cc
44
FOR_EACH_OBSERVER(Observer, observer_list_,
OnWriteEnabled
(url));
canned_syncable_file_system.h
156
virtual void
OnWriteEnabled
(const fileapi::FileSystemURL& url) OVERRIDE;
local_file_sync_context.h
204
virtual void
OnWriteEnabled
(const fileapi::FileSystemURL& url) OVERRIDE;
local_file_sync_service_unittest.cc
334
// We should get called OnSyncEnabled and
OnWriteEnabled
on kFile.
335
// (
OnWriteEnabled
is called because we release lock before returning
339
EXPECT_CALL(status_observer,
OnWriteEnabled
(kFile)).Times(AtLeast(0));
388
// We should get called OnSyncEnabled and possibly
OnWriteEnabled
(depends
392
EXPECT_CALL(status_observer,
OnWriteEnabled
(kFile)).Times(AtLeast(0));
456
// We should get called OnSyncEnabled and
OnWriteEnabled
on kPath and
482
//
OnWriteEnabled
will be notified on kPath (in multi-threaded this
484
EXPECT_CALL(status_observer,
OnWriteEnabled
(kPath)).Times(AtLeast(0));
canned_syncable_file_system.cc
546
void CannedSyncableFileSystem::
OnWriteEnabled
(const FileSystemURL& url) {
547
sync_status_observers_->Notify(&LocalFileSyncStatus::Observer::
OnWriteEnabled
,
local_file_sync_context.cc
535
void LocalFileSyncContext::
OnWriteEnabled
(const FileSystemURL& url) {
[
all
...]
/external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc
322
// We should get called OnSyncEnabled and
OnWriteEnabled
on kFile as in:
323
// 1.
OnWriteEnabled
when PrepareForSync(SYNC_SHARED) is finished and
328
EXPECT_CALL(status_observer,
OnWriteEnabled
(kFile))
Completed in 58 milliseconds