Home
last modified time | relevance | path

Searched refs:operation_runner (Results 1 – 25 of 42) sorted by relevance

12

/external/chromium_org/chrome/browser/sync_file_system/local/
Dsyncable_file_operation_runner_unittest.cc167 file_system_.operation_runner()->CreateFile( in TEST_F()
170 file_system_.operation_runner()->Truncate( in TEST_F()
177 file_system_.operation_runner()->FileExists( in TEST_F()
192 file_system_.operation_runner()->FileExists( in TEST_F()
209 file_system_.operation_runner()->Truncate( in TEST_F()
211 file_system_.operation_runner()->Remove( in TEST_F()
218 file_system_.operation_runner()->DirectoryExists( in TEST_F()
225 file_system_.operation_runner()->CreateDirectory( in TEST_F()
251 file_system_.operation_runner()->Copy( in TEST_F()
257 file_system_.operation_runner()->Move( in TEST_F()
[all …]
Dcanned_syncable_file_system.cc548 FileSystemOperationRunner* CannedSyncableFileSystem::operation_runner() { in operation_runner() function in sync_file_system::CannedSyncableFileSystem
549 return file_system_context_->operation_runner(); in operation_runner()
578 operation_runner()->CreateDirectory( in DoCreateDirectory()
587 operation_runner()->CreateFile(url, false /* exclusive */, callback); in DoCreateFile()
596 operation_runner()->Copy( in DoCopy()
610 operation_runner()->Move( in DoMove()
619 operation_runner()->Truncate(url, size, callback); in DoTruncateFile()
629 operation_runner()->TouchFile(url, last_access_time, in DoTouchFile()
638 operation_runner()->Remove(url, recursive, callback); in DoRemove()
645 operation_runner()->FileExists(url, callback); in DoFileExists()
[all …]
Dlocal_file_sync_context.cc323 file_system_context->operation_runner()->Remove( in HandleRemoteDelete()
343 file_system_context->operation_runner()->Remove( in HandleRemoteAddOrUpdate()
387 file_system_context->operation_runner()->CopyInForeignFile( in DidRemoveExistingEntryForRemoteAddOrUpdate()
394 file_system_context->operation_runner()->CreateDirectory( in DidRemoveExistingEntryForRemoteAddOrUpdate()
408 file_system_context->operation_runner()->CreateDirectory( in DidRemoveExistingEntryForRemoteAddOrUpdate()
465 file_system_context->operation_runner()->GetMetadata( in GetFileMetadata()
554 LocalFileSyncContext::operation_runner() const { in operation_runner() function in sync_file_system::LocalFileSyncContext
1070 file_system_context->operation_runner()->CopyInForeignFile( in DidCreateDirectoryForCopyIn()
/external/chromium_org/content/browser/fileapi/
Dfile_system_operation_runner_unittest.cc64 FileSystemOperationRunner* operation_runner() { in operation_runner() function in content::FileSystemOperationRunnerTest
65 return file_system_context_->operation_runner(); in operation_runner()
81 operation_runner()->Truncate(URL("foo"), 0, in TEST_F()
94 operation_runner()->Truncate(FileSystemURL(), 0, in TEST_F()
113 operation_runner()->Truncate(URL("foo"), 0, in TEST_F()
115 operation_runner()->Cancel(id, base::Bind(&GetCancelStatus, in TEST_F()
138 operation_runner()->Truncate(FileSystemURL(), 0, in TEST_F()
140 operation_runner()->Cancel(id, base::Bind(&GetCancelStatus, in TEST_F()
159 operation_runner()->Cancel(kInvalidId, base::Bind(&GetCancelStatus, in TEST_F()
Dfile_system_operation_impl_write_unittest.cc82 file_system_context_->operation_runner()->CreateFile( in SetUp()
183 file_system_context_->operation_runner()->Write( in TEST_F()
198 file_system_context_->operation_runner()->Write( in TEST_F()
213 file_system_context_->operation_runner()->Write( in TEST_F()
228 file_system_context_->operation_runner()->Write( in TEST_F()
243 file_system_context_->operation_runner()->CreateDirectory( in TEST_F()
250 file_system_context_->operation_runner()->Write( in TEST_F()
271 file_system_context_->operation_runner()->Write( in TEST_F()
287 file_system_context_->operation_runner()->Write( in TEST_F()
290 file_system_context_->operation_runner()->Cancel(id, RecordCancelCallback()); in TEST_F()
[all …]
Dfileapi_message_filter.cc261 operations_[request_id] = operation_runner()->Move( in OnMove()
284 operations_[request_id] = operation_runner()->Copy( in OnCopy()
304 operations_[request_id] = operation_runner()->Remove( in OnRemove()
321 operations_[request_id] = operation_runner()->GetMetadata( in OnReadMetadata()
339 operations_[request_id] = operation_runner()->CreateDirectory( in OnCreate()
343 operations_[request_id] = operation_runner()->CreateFile( in OnCreate()
362 operations_[request_id] = operation_runner()->DirectoryExists( in OnExists()
366 operations_[request_id] = operation_runner()->FileExists( in OnExists()
384 operations_[request_id] = operation_runner()->ReadDirectory( in OnReadDirectory()
413 operations_[request_id] = operation_runner()->Write( in OnWrite()
[all …]
Dfile_system_operation_impl_unittest.cc81 FileSystemOperationRunner* operation_runner() { in operation_runner() function in content::FileSystemOperationImplTest
82 return sandbox_file_system_.operation_runner(); in operation_runner()
301 operation_runner()->Move( in Move()
318 operation_runner()->Copy( in Copy()
334 operation_runner()->CopyInForeignFile( in CopyInForeignFile()
345 operation_runner()->Truncate( in Truncate()
356 operation_runner()->CreateFile( in CreateFile()
367 operation_runner()->Remove( in Remove()
380 operation_runner()->CreateDirectory( in CreateDirectory()
394 operation_runner()->GetMetadata( in GetMetadata()
[all …]
Dbrowser_file_system_helper.cc127 context->operation_runner()->SyncGetPlatformPath(url, platform_path); in SyncGetPlatformPath()
/external/chromium_org/content/public/test/
Dasync_file_test_helper.cc107 context->operation_runner()->Copy(src, in CopyWithProgress()
122 context->operation_runner()->Move(src, in Move()
136 context->operation_runner()->Remove( in Remove()
150 context->operation_runner()->ReadDirectory( in ReadDirectory()
161 context->operation_runner()->CreateDirectory( in CreateDirectory()
175 context->operation_runner()->CreateFile( in CreateFile()
195 context->operation_runner()->CopyInForeignFile( in CreateFileWithData()
207 context->operation_runner()->Truncate( in TruncateFile()
219 context->operation_runner()->GetMetadata( in GetMetadata()
232 context->operation_runner()->CreateSnapshotFile( in GetPlatformPath()
Dsandbox_file_system_test_helper.cc119 FileSystemOperationRunner* SandboxFileSystemTestHelper::operation_runner() { in operation_runner() function in content::SandboxFileSystemTestHelper
120 return file_system_context_->operation_runner(); in operation_runner()
Dsandbox_file_system_test_helper.h76 storage::FileSystemOperationRunner* operation_runner();
/external/chromium_org/chrome/browser/media_galleries/fileapi/
Ditunes_file_util_unittest.cc197 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TestNonexistentFolder()
213 storage::FileSystemOperationRunner* operation_runner() const { in operation_runner() function in itunes::ItunesFileUtilTest
214 return file_system_context_->operation_runner(); in operation_runner()
243 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
263 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
279 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
303 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
324 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
334 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
344 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
Diphoto_file_util_unittest.cc229 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TestNonexistentFolder()
245 storage::FileSystemOperationRunner* operation_runner() const { in operation_runner() function in iphoto::IPhotoFileUtilTest
246 return file_system_context_->operation_runner(); in operation_runner()
275 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
290 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
305 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
319 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
325 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
335 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
346 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
Dnative_media_file_util_unittest.cc184 storage::FileSystemOperationRunner* operation_runner() { in operation_runner() function in NativeMediaFileUtilTest
185 return file_system_context_->operation_runner(); in operation_runner()
216 operation_runner()->DirectoryExists( in TEST_F()
219 operation_runner()->FileExists( in TEST_F()
234 operation_runner()->ReadDirectory( in TEST_F()
265 operation_runner()->CreateDirectory( in TEST_F()
304 operation_runner()->Copy( in TEST_F()
370 operation_runner()->Copy( in TEST_F()
411 operation_runner()->Move( in TEST_F()
478 operation_runner()->Move( in TEST_F()
[all …]
Dpicasa_file_util_unittest.cc299 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in VerifyFolderDirectoryList()
318 ReadDirectoryTestHelper(operation_runner(), folder_url, &folder_contents, in VerifyFolderDirectoryList()
345 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TestNonexistentDirectory()
354 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TestEmptyDirectory()
371 storage::FileSystemOperationRunner* operation_runner() const { in operation_runner() function in picasa::PicasaFileUtilTest
372 return file_system_context_->operation_runner(); in operation_runner()
438 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
457 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
575 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); in TEST_F()
592 operation_runner()->CreateSnapshotFile( in TEST_F()
Dmedia_file_validator_browsertest.cc179 operation_runner()->GetMetadata(url, in CheckFile()
202 operation_runner()->Move(move_src_, in OnTestFilesReady()
230 storage::FileSystemOperationRunner* operation_runner() { in operation_runner() function in MediaFileValidatorTest
231 return file_system_context_->operation_runner(); in operation_runner()
/external/chromium_org/storage/browser/fileapi/
Dremove_operation_delegate.cc26 operation_runner()->RemoveFile(url_, base::Bind( in Run()
36 operation_runner()->RemoveFile( in ProcessFile()
49 operation_runner()->RemoveDirectory(url, callback); in PostProcessDirectory()
58 operation_runner()->RemoveDirectory( in DidTryRemoveFile()
Dcopy_or_move_operation_delegate.cc48 FileSystemOperationRunner* operation_runner, in CopyOrMoveOnSameFileSystemImpl() argument
55 : operation_runner_(operation_runner), in CopyOrMoveOnSameFileSystemImpl()
97 FileSystemOperationRunner* operation_runner, in SnapshotCopyOrMoveImpl() argument
105 : operation_runner_(operation_runner), in SnapshotCopyOrMoveImpl()
369 FileSystemOperationRunner* operation_runner, in StreamCopyOrMoveImpl() argument
379 : operation_runner_(operation_runner), in StreamCopyOrMoveImpl()
804 operation_runner(), operation_type_, src_url, dest_url, option_, in ProcessFile()
826 operation_runner(), in ProcessFile()
842 operation_runner(), operation_type_, src_url, dest_url, option_, in ProcessFile()
865 operation_runner()->RemoveDirectory( in ProcessDirectory()
[all …]
Drecursive_operation_delegate.cc48 FileSystemOperationRunner* RecursiveOperationDelegate::operation_runner() { in operation_runner() function in storage::RecursiveOperationDelegate
49 return file_system_context_->operation_runner(); in operation_runner()
103 operation_runner()->ReadDirectory( in DidProcessDirectory()
Drecursive_operation_delegate.h116 FileSystemOperationRunner* operation_runner();
Dfile_system_file_stream_reader.cc104 file_system_context_->operation_runner()->CreateSnapshotFile( in CreateSnapshot()
/external/chromium_org/content/browser/renderer_host/pepper/
Dpepper_internal_file_ref_backend.cc99 GetFileSystemContext()->operation_runner()->CreateDirectory( in MakeDirectory()
117 GetFileSystemContext()->operation_runner()->TouchFile( in Touch()
133 GetFileSystemContext()->operation_runner()->Remove( in Delete()
155 GetFileSystemContext()->operation_runner()->Move( in Rename()
171 GetFileSystemContext()->operation_runner()->GetMetadata( in Query()
202 GetFileSystemContext()->operation_runner()->ReadDirectory( in ReadDirectoryEntries()
/external/chromium_org/net/disk_cache/simple/
Dsimple_entry_impl.cc423 ScopedOperationRunner operation_runner(this); in WriteData() local
481 ScopedOperationRunner operation_runner(this); in ReadSparseData() local
493 ScopedOperationRunner operation_runner(this); in WriteSparseData() local
505 ScopedOperationRunner operation_runner(this); in GetAvailableRange() local
661 ScopedOperationRunner operation_runner(this); in OpenEntryInternal() local
708 ScopedOperationRunner operation_runner(this); in CreateEntryInternal() local
810 ScopedOperationRunner operation_runner(this); in ReadDataInternal() local
893 ScopedOperationRunner operation_runner(this); in WriteDataInternal() local
992 ScopedOperationRunner operation_runner(this); in ReadSparseDataInternal() local
1020 ScopedOperationRunner operation_runner(this); in WriteSparseDataInternal() local
[all …]
/external/chromium_org/chrome/browser/chromeos/file_manager/
Dsnapshot_manager.cc63 context->operation_runner()->GetMetadata( in GetMetadataOnIOThread()
90 context->operation_runner()->CreateSnapshotFile(url, callback); in CreateSnapshotFileOnIOThread()
Dfilesystem_api_util.cc89 file_system_context->operation_runner()->CreateFile(url, false, callback); in PrepareFileAfterCheckExistOnIOThread()
100 file_system_context->operation_runner()->FileExists( in PrepareFileOnIOThread()

12