/external/chromium_org/chrome/browser/sync_file_system/local/ |
D | syncable_file_operation_runner_unittest.cc | 167 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 …]
|
D | canned_syncable_file_system.cc | 548 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 …]
|
D | local_file_sync_context.cc | 323 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/ |
D | file_system_operation_runner_unittest.cc | 64 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()
|
D | file_system_operation_impl_write_unittest.cc | 82 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 …]
|
D | fileapi_message_filter.cc | 261 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 …]
|
D | file_system_operation_impl_unittest.cc | 81 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 …]
|
D | browser_file_system_helper.cc | 127 context->operation_runner()->SyncGetPlatformPath(url, platform_path); in SyncGetPlatformPath()
|
/external/chromium_org/content/public/test/ |
D | async_file_test_helper.cc | 107 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()
|
D | sandbox_file_system_test_helper.cc | 119 FileSystemOperationRunner* SandboxFileSystemTestHelper::operation_runner() { in operation_runner() function in content::SandboxFileSystemTestHelper 120 return file_system_context_->operation_runner(); in operation_runner()
|
D | sandbox_file_system_test_helper.h | 76 storage::FileSystemOperationRunner* operation_runner();
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
D | itunes_file_util_unittest.cc | 197 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()
|
D | iphoto_file_util_unittest.cc | 229 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()
|
D | native_media_file_util_unittest.cc | 184 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 …]
|
D | picasa_file_util_unittest.cc | 299 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()
|
D | media_file_validator_browsertest.cc | 179 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/ |
D | remove_operation_delegate.cc | 26 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()
|
D | copy_or_move_operation_delegate.cc | 48 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 …]
|
D | recursive_operation_delegate.cc | 48 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()
|
D | recursive_operation_delegate.h | 116 FileSystemOperationRunner* operation_runner();
|
D | file_system_file_stream_reader.cc | 104 file_system_context_->operation_runner()->CreateSnapshotFile( in CreateSnapshot()
|
/external/chromium_org/content/browser/renderer_host/pepper/ |
D | pepper_internal_file_ref_backend.cc | 99 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/ |
D | simple_entry_impl.cc | 423 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/ |
D | snapshot_manager.cc | 63 context->operation_runner()->GetMetadata( in GetMetadataOnIOThread() 90 context->operation_runner()->CreateSnapshotFile(url, callback); in CreateSnapshotFileOnIOThread()
|
D | filesystem_api_util.cc | 89 file_system_context->operation_runner()->CreateFile(url, false, callback); in PrepareFileAfterCheckExistOnIOThread() 100 file_system_context->operation_runner()->FileExists( in PrepareFileOnIOThread()
|