HomeSort by relevance Sort by last modified time
    Searched defs:file_system (Results 51 - 72 of 72) sorted by null

1 23

  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 293 FileSystemInterface* file_system = file_system_getter.Run(); local
294 if (!file_system) {
300 file_system->GetFileContent(drive_file_path,
file_system.h 15 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h"
48 namespace file_system { namespace in namespace:drive
60 } // namespace file_system
65 public file_system::OperationDelegate {
164 // file_system::OperationDelegate overrides.
168 virtual void OnDriveSyncError(file_system::DriveSyncErrorType type,
244 file_system::DriveSyncErrorType type,
284 scoped_ptr<file_system::CopyOperation> copy_operation_;
285 scoped_ptr<file_system::CreateDirectoryOperation> create_directory_operation_;
286 scoped_ptr<file_system::CreateFileOperation> create_file_operation_
    [all...]
sync_client.h 31 namespace file_system { namespace in namespace:drive
53 file_system::OperationDelegate* delegate,
167 file_system::OperationDelegate* operation_delegate_;
172 scoped_ptr<file_system::DownloadOperation> download_operation_;
drive_integration_service.h 109 FileSystemInterface* file_system() { return file_system_.get(); } function in class:drive::DriveIntegrationService
file_system_util.cc 140 return integration_service ? integration_service->file_system() : NULL;
274 FileSystemInterface* file_system = GetFileSystemByProfile(profile); local
275 if (!file_system || !IsUnderDriveMountPoint(path)) {
281 WriteOnCacheFile(file_system,
293 FileSystemInterface* file_system = GetFileSystemByProfile(profile); local
294 DCHECK(file_system);
295 file_system->CreateDirectory(
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
copy_operation_unittest.cc 5 #include "chrome/browser/chromeos/drive/file_system/copy_operation.h"
11 #include "chrome/browser/chromeos/drive/file_system/operation_test_base.h"
22 namespace file_system { namespace in namespace:drive
517 } // namespace file_system
download_operation_unittest.cc 5 #include "chrome/browser/chromeos/drive/file_system/download_operation.h"
12 #include "chrome/browser/chromeos/drive/file_system/operation_test_base.h"
22 namespace file_system { namespace in namespace:drive
504 } // namespace file_system
copy_operation.cc 5 #include "chrome/browser/chromeos/drive/file_system/copy_operation.h"
13 #include "chrome/browser/chromeos/drive/file_system/create_file_operation.h"
14 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h"
26 namespace file_system { namespace in namespace:drive
669 } // namespace file_system
download_operation.cc 5 #include "chrome/browser/chromeos/drive/file_system/download_operation.h"
16 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h"
26 namespace file_system { namespace in namespace:drive
542 } // namespace file_system
operation_test_base.h 14 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h"
41 namespace file_system { namespace in namespace:drive
165 } // namespace file_system
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
fileapi_worker.cc 208 FileSystemInterface* file_system = file_system_getter.Run(); local
210 if (!file_system) {
216 callback.Run(file_system);
221 FileSystemInterface* file_system) {
223 file_system->GetResourceEntry(
232 FileSystemInterface* file_system) {
234 file_system->Copy(src_file_path, dest_file_path, preserve_last_modified,
241 FileSystemInterface* file_system) {
243 file_system->Move(src_file_path, dest_file_path,
250 FileSystemInterface* file_system) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
mount_path_util_unittest.cc 147 ProvidedFileSystemInterface* file_system = parser.file_system(); local
148 ASSERT_TRUE(file_system);
149 EXPECT_EQ(kFileSystemId, file_system->GetFileSystemInfo().file_system_id());
170 ProvidedFileSystemInterface* file_system = parser.file_system(); local
171 ASSERT_TRUE(file_system);
172 EXPECT_EQ(kFileSystemId, file_system->GetFileSystemInfo().file_system_id());
235 ProvidedFileSystemInterface* file_system = parser.file_system(); local
259 ProvidedFileSystemInterface* file_system = parser.file_system(); local
280 ProvidedFileSystemInterface* file_system = parser.file_system(); local
    [all...]
service.cc 161 ProvidedFileSystemInterface* file_system = local
163 DCHECK(file_system);
164 file_system_map_[FileSystemKey(extension_id, file_system_id)] = file_system;
332 base::DictionaryValue* file_system = new base::DictionaryValue(); local
333 file_system->SetStringWithoutPathExpansion(kPrefKeyFileSystemId,
335 file_system->SetStringWithoutPathExpansion(kPrefKeyDisplayName,
337 file_system->SetBooleanWithoutPathExpansion(kPrefKeyWritable,
355 file_system_info.file_system_id(), file_system);
398 const base::DictionaryValue* file_system = NULL; local
407 if (!file_system_value->GetAsDictionary(&file_system) ||
    [all...]
service_unittest.cc 114 base::DictionaryValue* file_system = new base::DictionaryValue(); local
115 file_system->SetStringWithoutPathExpansion(kPrefKeyFileSystemId,
117 file_system->SetStringWithoutPathExpansion(kPrefKeyDisplayName, kDisplayName);
118 file_system->SetBooleanWithoutPathExpansion(kPrefKeyWritable, writable);
119 file_systems->SetWithoutPathExpansion(kFileSystemId, file_system);
385 const base::DictionaryValue* file_system = NULL; local
388 ASSERT_TRUE(file_system_value->GetAsDictionary(&file_system));
391 EXPECT_TRUE(file_system->GetStringWithoutPathExpansion(kPrefKeyFileSystemId,
396 EXPECT_TRUE(file_system->GetStringWithoutPathExpansion(kPrefKeyDisplayName,
402 file_system->GetBooleanWithoutPathExpansion(kPrefKeyWritable, &writable))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_file_system.cc 420 drive::FileSystemInterface* file_system = local
422 if (!file_system) {
423 // |file_system| is NULL if Drive is disabled.
430 file_system->GetAvailableSpace(
private_api_drive.cc 198 drive::FileSystemInterface* const file_system = member in class:extensions::__anon7765::SingleEntryPropertiesGetterForDrive::drive
200 if (!file_system) {
201 // |file_system| is NULL if Drive is disabled or not mounted.
206 file_system->GetResourceEntry(
231 drive::FileSystemInterface* const file_system = member in class:extensions::__anon7765::SingleEntryPropertiesGetterForDrive::drive
233 if (!file_system) {
237 file_system->GetPathFromResourceId(
253 drive::FileSystemInterface* const file_system = member in class:extensions::__anon7765::SingleEntryPropertiesGetterForDrive::drive
255 if (!file_system) {
261 file_system->GetResourceEntry
286 drive::FileSystemInterface* const file_system = member in class:extensions::__anon7765::SingleEntryPropertiesGetterForDrive::drive
524 drive::FileSystemInterface* const file_system = member in class:extensions::drive
612 drive::FileSystemInterface* const file_system = member in class:extensions::drive
693 drive::FileSystemInterface* const file_system = member in class:extensions::drive
865 drive::FileSystemInterface* const file_system = member in class:extensions::drive
961 drive::FileSystemInterface* const file_system = member in class:extensions::drive
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
provided_file_systems_ui.cc 182 file_system_provider::ProvidedFileSystemInterface* const file_system = member in class:chromeos::__anon10077::file_system_provider
186 if (file_system) {
188 file_system->GetRequestManager();
281 file_system_provider::ProvidedFileSystemInterface* const file_system = member in class:chromeos::__anon10077::file_system_provider
284 DCHECK(file_system);
287 file_system->GetRequestManager();
323 file_system_provider::ProvidedFileSystemInterface* const file_system = member in class:chromeos::__anon10077::file_system_provider
326 if (file_system) {
328 file_system->GetRequestManager();
335 file_system_provider::ProvidedFileSystemInterface* const file_system member in class:chromeos::__anon10077::file_system_provider
    [all...]
  /external/chromium_org/ppapi/proxy/
nacl_message_scanner.cc 256 NaClMessageScanner::FileIO::FileIO(FileSystem* file_system,
258 : file_system_(file_system),
483 FileSystem* file_system = NULL; local
486 file_system));
489 file_system = insert_result.first->second;
494 new FileIO(file_system, max_written_offset)));
  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager.cc 514 drive::FileSystemInterface* const file_system = member in class:file_manager::drive
516 if (file_system) {
517 file_system->MarkCacheFileAsUnmounted(
  /external/chromium_org/chrome/browser/ui/ash/
screenshot_taker.cc 149 drive::FileSystemInterface* file_system = variable
151 file_system->GetFile(
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_sync_unittest.cc 233 CannedSyncableFileSystem* file_system = new CannedSyncableFileSystem( local
236 file_system->SetUp(CannedSyncableFileSystem::QUOTA_DISABLED);
241 origin, file_system->file_system_context(),
247 file_system->backend()->sync_context()->
250 EXPECT_EQ(base::File::FILE_OK, file_system->OpenFileSystem());
251 file_systems_[app_id] = file_system;
435 CannedSyncableFileSystem* file_system = itr->second; local
440 file_system);
447 CannedSyncableFileSystem* file_system) {
466 file_system->ReadDirectory(url, &local_entries))
    [all...]
  /external/chromium_org/content/browser/fileapi/
obfuscated_file_util_unittest.cc 198 SandboxFileSystemTestHelper* file_system) {
201 if (file_system)
202 context = file_system->NewOperationContext();
225 SandboxFileSystemTestHelper* file_system = local
228 file_system->SetUp(file_system_context_.get());
229 return file_system;
397 SandboxFileSystemTestHelper* file_system,
400 sandbox_file_system_(file_system),
    [all...]

Completed in 894 milliseconds

1 23