HomeSort by relevance Sort by last modified time
    Searched refs:mount_path (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
provided_file_system_info.cc 17 const base::FilePath& mount_path)
22 mount_path_(mount_path) {
provided_file_system_info.h 23 const base::FilePath& mount_path);
31 const base::FilePath& mount_path() const { return mount_path_; } function in class:chromeos::file_system_provider::ProvidedFileSystemInfo
notification_manager.cc 70 file_system_info_.mount_path().value(), false /* by_user */);
83 file_system_info_.mount_path().value(), CreateNotification());
92 file_system_info_.mount_path().value(), CreateNotification());
97 file_system_info_.mount_path().value(), false /* by_user */);
116 file_system_info_.mount_path().value(), CreateNotification());
132 file_system_info_.mount_path().value(),
142 file_system_info_.mount_path().value()),
mount_path_util_unittest.cc 46 const base::FilePath mount_path = file_system_info.mount_path(); local
55 base::FilePath(mount_path.BaseName().Append(relative_path)));
110 const base::FilePath mount_path = local
115 mount_path.Append(base::FilePath(file_path.value().substr(1)));
117 EXPECT_TRUE(IsFileSystemProviderLocalPath(mount_path));
252 const base::FilePath kLocalFilePath = file_system_info.mount_path().Append(
275 const base::FilePath kLocalFilePath = file_system_info.mount_path();
provided_file_system_unittest.cc 90 const base::FilePath mount_path = variable
93 kExtensionId, kFileSystemId, kDisplayName, mount_path));
service.cc 135 const base::FilePath& mount_path = local
137 const std::string mount_point_name = mount_path.BaseName().AsUTF8Unsafe();
142 mount_path)) {
157 // mount_path = /provided/b33f1337-hello_world-5aa5
159 extension_id, file_system_id, display_name, writable, mount_path);
202 file_system_info.mount_path().BaseName().value();
  /external/chromium_org/chromeos/disks/
disk_mount_manager.cc 88 virtual void UnmountPath(const std::string& mount_path,
91 UnmountChildMounts(mount_path); variable
92 cros_disks_client_->Unmount(mount_path, options,
97 mount_path),
102 mount_path));
106 virtual void FormatMountedDevice(const std::string& mount_path) OVERRIDE {
107 MountPointMap::const_iterator mount_point = mount_points_.find(mount_path);
109 LOG(ERROR) << "Mount point with path \"" << mount_path << "\" not found.";
110 OnFormatCompleted(FORMAT_ERROR_UNKNOWN, mount_path);
122 UnmountPath(disk->second->mount_path(),
272 std::string mount_path = mount_path_in; local
297 OnUnmountPath(UnmountPathCallback(), true, mount_path); local
    [all...]
disk_mount_manager.h 55 const std::string& mount_path,
82 const std::string& mount_path() const { return mount_path_; } function in class:chromeos::disks::DiskMountManager::Disk
144 void set_mount_path(const std::string& mount_path) {
145 mount_path_ = mount_path;
179 std::string mount_path; member in struct:chromeos::disks::DiskMountManager::MountPointInfo
190 mount_path(mount),
196 // MountPointMap key is mount_path.
268 virtual void UnmountPath(const std::string& mount_path,
273 // Example: mount_path: /media/VOLUME_LABEL
274 virtual void FormatMountedDevice(const std::string& mount_path) = 0
    [all...]
disk_mount_manager_unittest.cc 26 const char* mount_path; member in struct:__anon10774::TestDiskInfo
50 const char* mount_path; member in struct:__anon10774::TestMountPointInfo
59 "/device/mount_path",
85 "/archive/mount_path",
91 "/device/mount_path",
146 bool HasMountPoint(const std::string& mount_path) {
149 return mount_points.find(mount_path) != mount_points.end();
157 disk.mount_path,
184 mount_point.mount_path,
223 DiskMountManager::GetInstance()->FormatMountedDevice("/archive/mount_path");
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
fake_disk_mount_manager.h 34 UnmountRequest(const std::string& mount_path,
37 std::string mount_path; member in struct:file_manager::FakeDiskMountManager::UnmountRequest
64 virtual void UnmountPath(const std::string& mount_path,
67 virtual void FormatMountedDevice(const std::string& mount_path) OVERRIDE;
fake_disk_mount_manager.cc 24 const std::string& mount_path,
26 : mount_path(mount_path),
90 void FakeDiskMountManager::UnmountPath(const std::string& mount_path,
93 unmount_requests_.push_back(UnmountRequest(mount_path, options));
95 MountPointMap::iterator iter = mount_points_.find(mount_path);
107 void FakeDiskMountManager::FormatMountedDevice(const std::string& mount_path) {
volume_manager.cc 119 volume_info.mount_path.BaseName().AsUTF8Unsafe());
131 volume_info.mount_path = drive_path;
144 volume_info.mount_path = downloads_path;
159 volume_info.mount_path = path;
173 volume_info.mount_path = base::FilePath(mount_point.mount_path);
175 volume_info.volume_label = volume_info.mount_path.BaseName().AsUTF8Unsafe();
201 volume_info.mount_path = file_system_info.mount_path();
439 if (disk->mount_path().empty() && disk->has_media() &
612 std::string mount_path = local
    [all...]
  /system/core/toolbox/
umount.c 33 char mount_path[256]; local
44 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
46 if (is_loop(device) && strcmp(path, mount_path) == 0) {
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
device_event_router_unittest.cc 68 // Creates a disk instance with |device_path| and |mount_path| for testing.
70 const std::string& mount_path) {
72 mount_path,
93 // Creates a volume info instance with |device_path| and |mount_path| for
96 const std::string& mount_path) {
99 volume_info.mount_path = base::FilePath(mount_path);
file_manager_private_apitest.cc 41 std::string mount_path; member in struct:__anon7762::TestMountPoint
190 kTestMountPoints[i].mount_path,
192 kTestMountPoints[i].mount_path,
206 kTestMountPoints[i].mount_path,
private_api_mount.cc 93 volumes[i].mount_path.IsParent(path)) {
201 volume_info.mount_path.value(),
243 log_string += volume_info_list[i].mount_path.AsUTF8Unsafe();
private_api_file_system.cc 52 // Retrieves total and remaining available size on |mount_path|.
53 void GetSizeStatsOnBlockingPool(const std::string& mount_path,
57 if (HANDLE_EINTR(statvfs(mount_path.c_str(), &stat)) == 0) {
304 volume_info.mount_path,
440 volume_info.mount_path.value(),
534 volume_info.mount_path.AsUTF8Unsafe());
  /external/chromium_org/components/storage_monitor/
storage_monitor_chromeos.cc 71 mount_info.mount_path,
83 return MediaStorageUtil::HasDcim(base::FilePath(mount_info.mount_path));
164 if (ContainsKey(mount_map_, mount_info.mount_path)) {
177 MountMap::iterator it = mount_map_.find(mount_info.mount_path);
250 std::string mount_path; local
254 mount_path = info_it->first;
257 if (mount_path.empty()) {
268 manager->UnmountPath(mount_path, chromeos::UNMOUNT_OPTIONS_NONE,
282 if (ContainsKey(mount_map_, mount_info.mount_path)) {
297 mount_map_.insert(std::make_pair(mount_info.mount_path, info))
    [all...]
storage_monitor_chromeos_unittest.cc 322 base::FilePath mount_path = CreateMountPoint(kMountPointA, false); local
324 ASSERT_FALSE(mount_path.empty());
327 mount_path.value(),
344 EXPECT_EQ(mount_path.value(), observer().last_attached().location());
350 base::FilePath mount_path = CreateMountPoint(kMountPointA, true); local
352 ASSERT_FALSE(mount_path.empty());
357 mount_path.value(),
  /external/chromium_org/chromeos/dbus/
fake_cros_disks_client.cc 109 const std::string& mount_path) {
113 MountEntry(error_code, source_path, mount_type, mount_path));
cros_disks_client.h 113 const std::string& mount_path() const { return mount_path_; } function in class:chromeos::DiskInfo
202 const std::string& mount_path)
206 mount_path_(mount_path) {
212 const std::string& mount_path() const { return mount_path_; } function in struct:chromeos::MountEntry
fake_cros_disks_client.h 61 const std::string& mount_path);
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_external_updater.cc 139 << mount_info.mount_path;
148 base::FilePath(mount_info.mount_path),
154 base::FilePath(mount_info.mount_path),
160 } else if (external_update_path_.value() == mount_info.mount_path) {
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_device_handler_unittest.cc 89 virtual void UnmountPath(const std::string& mount_path,
92 virtual void FormatMountedDevice(const std::string& mount_path) OVERRIDE {}
  /system/vold/
Volume.cpp 292 char mount_path[256]; local
304 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
305 if (!strcmp(mount_path, path)) {

Completed in 840 milliseconds

1 2