Home
last modified time | relevance | path

Searched refs:mount_type (Results 1 – 25 of 43) sorted by relevance

12

/external/chromium_org/webkit/browser/fileapi/
Dfile_system_url.cc34 FileSystemType mount_type, in CreateForTest() argument
36 return FileSystemURL(origin, mount_type, virtual_path); in CreateForTest()
43 FileSystemType* mount_type, in ParseFileSystemSchemeURL() argument
91 if (mount_type) in ParseFileSystemSchemeURL()
92 *mount_type = file_system_type; in ParseFileSystemSchemeURL()
111 FileSystemType mount_type, in FileSystemURL() argument
115 mount_type_(mount_type), in FileSystemURL()
117 type_(mount_type), in FileSystemURL()
123 FileSystemType mount_type, in FileSystemURL() argument
132 mount_type_(mount_type), in FileSystemURL()
Dfile_system_url.h87 FileSystemType mount_type,
93 FileSystemType* mount_type,
120 FileSystemType mount_type() const { return mount_type_; } in mount_type() function
151 FileSystemType mount_type,
155 FileSystemType mount_type,
Dexternal_mount_points.cc283 url.origin(), url.mount_type(), url.virtual_path(), in CrackFileSystemURL()
300 url.origin(), url.mount_type(), url.virtual_path(), in CrackFileSystemURL()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dnacl_io.cc19 int nacl_io_register_mount_type(const char* mount_type, in nacl_io_register_mount_type() argument
21 return ki_register_mount_type(mount_type, fuse_ops); in nacl_io_register_mount_type()
24 int nacl_io_unregister_mount_type(const char* mount_type) { in nacl_io_unregister_mount_type() argument
25 return ki_unregister_mount_type(mount_type); in nacl_io_unregister_mount_type()
Dnacl_io.h168 int nacl_io_register_mount_type(const char* mount_type,
179 int nacl_io_unregister_mount_type(const char* mount_type);
Dkernel_intercept.cc53 int ki_register_mount_type(const char* mount_type, in ki_register_mount_type() argument
55 return s_kp->RegisterMountType(mount_type, fuse_ops); in ki_register_mount_type()
58 int ki_unregister_mount_type(const char* mount_type) { in ki_unregister_mount_type() argument
59 return s_kp->UnregisterMountType(mount_type); in ki_unregister_mount_type()
Dkernel_intercept.h36 int ki_register_mount_type(const char* mount_type,
38 int ki_unregister_mount_type(const char* mount_type);
Dkernel_proxy.h55 bool RegisterMountType(const char* mount_type, fuse_operations* fuse_ops);
56 bool UnregisterMountType(const char* mount_type);
Dkernel_proxy.cc128 bool KernelProxy::RegisterMountType(const char* mount_type, in RegisterMountType() argument
130 MountFactoryMap_t::iterator iter = factories_.find(mount_type); in RegisterMountType()
134 factories_[mount_type] = new FuseMountFactory(fuse_ops); in RegisterMountType()
138 bool KernelProxy::UnregisterMountType(const char* mount_type) { in UnregisterMountType() argument
139 MountFactoryMap_t::iterator iter = factories_.find(mount_type); in UnregisterMountType()
/external/chromium_org/webkit/common/fileapi/
Dfile_system_info.cc10 : mount_type(fileapi::kFileSystemTypeTemporary) { in FileSystemInfo()
15 fileapi::FileSystemType mount_type) in FileSystemInfo() argument
18 mount_type(mount_type) { in FileSystemInfo()
Dfile_system_info.h23 fileapi::FileSystemType mount_type);
28 fileapi::FileSystemType mount_type; member
Dfile_system_util.cc448 FileSystemType mount_type = fileapi::kFileSystemTypeExternal; in GetFileSystemInfoForChromeOS() local
449 return FileSystemInfo(fileapi::GetFileSystemName(origin_url, mount_type), in GetFileSystemInfoForChromeOS()
450 fileapi::GetFileSystemRootURI(origin_url, mount_type), in GetFileSystemInfoForChromeOS()
451 mount_type); in GetFileSystemInfoForChromeOS()
/external/chromium_org/chromeos/dbus/
Dfake_cros_disks_client.cc96 MountType mount_type, in SendMountCompletedEvent() argument
100 mount_completed_handler_.Run(error_code, source_path, mount_type, mount_path); in SendMountCompletedEvent()
Dfake_cros_disks_client.h53 MountType mount_type,
Dcros_disks_client.cc346 unsigned int mount_type = 0; in OnMountCompleted() local
350 !reader.PopUint32(&mount_type) || in OnMountCompleted()
356 static_cast<MountType>(mount_type), mount_path); in OnMountCompleted()
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
Dmetadata_db_migration_util.cc36 fileapi::FileSystemType mount_type; in ParseV0FormatFileSystemURL() local
40 url, origin, &mount_type, &virtual_path) || in ParseV0FormatFileSystemURL()
41 mount_type != fileapi::kFileSystemTypeExternal) { in ParseV0FormatFileSystemURL()
/external/chromium_org/content/browser/fileapi/
Dfile_system_context_unittest.cc82 EXPECT_EQ(expect_mount_type, url.mount_type()); in ExpectFileSystemURLMatches()
342 EXPECT_EQ(kFileSystemTypePersistent, cracked_url.mount_type()); in TEST_F()
354 EXPECT_EQ(kFileSystemTypeIsolated, cracked_url.mount_type()); in TEST_F()
364 EXPECT_EQ(kFileSystemTypeExternal, cracked_url.mount_type()); in TEST_F()
/external/chromium_org/chrome/browser/extensions/api/sync_file_system/
Dsync_file_system_api_helpers.cc115 url.origin(), url.mount_type()).spec(); in CreateDictionaryValueForFileSystemEntry()
123 fileapi::GetFileSystemTypeString(url.mount_type())); in CreateDictionaryValueForFileSystemEntry()
/external/chromium_org/chromeos/disks/
Ddisk_mount_manager.cc231 if (mount_point.mount_type == chromeos::MOUNT_TYPE_DEVICE && in AddMountPointForTest()
301 MountType mount_type, in OnMountCompleted() argument
304 if (mount_type == MOUNT_TYPE_DEVICE) { in OnMountCompleted()
312 const MountPointInfo mount_info(source_path, mount_path, mount_type, in OnMountCompleted()
325 mount_info.mount_type == MOUNT_TYPE_DEVICE && in OnMountCompleted()
357 mount_points_it->second.mount_type, in OnUnmountPath()
Ddisk_mount_manager.h176 MountType mount_type; member
186 mount_type(type), in MountPointInfo()
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
Dfile_browser_private_apitest.cc41 chromeos::MountType mount_type; member
187 kTestMountPoints[i].mount_type, in InitMountPoints()
/external/chromium_org/chrome/browser/storage_monitor/
Dstorage_monitor_linux_unittest.cc148 const std::string& mount_type) in MtabTestData()
151 mount_type(mount_type) { in MtabTestData()
156 const std::string mount_type; member
301 entry.mnt_type = const_cast<char*>(data[i].mount_type.c_str()); in WriteToMtab()
/external/chromium_org/chrome/browser/chromeos/file_manager/
Dvolume_manager.cc113 volume_info.type = MountTypeToVolumeType(mount_point.mount_type); in CreateVolumeInfoFromMountPointInfo()
389 DCHECK_NE(chromeos::MOUNT_TYPE_INVALID, mount_info.mount_type); in OnMountEvent()
391 if (mount_info.mount_type == chromeos::MOUNT_TYPE_ARCHIVE) { in OnMountEvent()
Dmounted_disk_monitor.cc71 if (mount_info.mount_type != chromeos::MOUNT_TYPE_DEVICE) in OnMountEvent()
/external/chromium_org/content/common/fileapi/
Dfile_system_messages.h28 IPC_STRUCT_TRAITS_MEMBER(mount_type)

12