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

1 2

  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
provided_file_system_info.cc 16 const base::FilePath& mount_path)
20 mount_path_(mount_path) {
provided_file_system_info.h 22 const base::FilePath& mount_path);
29 const base::FilePath& mount_path() const { return mount_path_; } function in class:chromeos::file_system_provider::ProvidedFileSystemInfo
mount_path_util_unittest.cc 43 const base::FilePath mount_path = file_system_info.mount_path(); local
52 base::FilePath(mount_path.BaseName().Append(relative_path)));
provided_file_system_unittest.cc 95 const base::FilePath mount_path = variable
98 kExtensionId, kFileSystemId, kFileSystemName, mount_path));
service.cc 130 const base::FilePath& mount_path = local
132 const std::string mount_point_name = mount_path.BaseName().AsUTF8Unsafe();
137 mount_path)) {
151 // mount_path = /provided/b33f1337-41-5aa5
153 extension_id, file_system_id, file_system_name, mount_path);
197 file_system_info.mount_path().BaseName().value();
  /external/chromium_org/chromeos/disks/
disk_mount_manager.cc 86 virtual void UnmountPath(const std::string& mount_path,
89 UnmountChildMounts(mount_path); variable
90 cros_disks_client_->Unmount(mount_path, options,
95 mount_path),
100 mount_path));
104 virtual void FormatMountedDevice(const std::string& mount_path) OVERRIDE {
105 MountPointMap::const_iterator mount_point = mount_points_.find(mount_path);
107 LOG(ERROR) << "Mount point with path \"" << mount_path << "\" not found.";
108 OnFormatCompleted(FORMAT_ERROR_UNKNOWN, mount_path);
120 UnmountPath(disk->second->mount_path(),
259 std::string mount_path = mount_path_in; local
284 OnUnmountPath(UnmountPathCallback(), true, mount_path); local
    [all...]
disk_mount_manager.h 55 const std::string& mount_path,
81 const std::string& mount_path() const { return mount_path_; } function in class:chromeos::disks::DiskMountManager::Disk
140 void set_mount_path(const std::string& mount_path) {
141 mount_path_ = mount_path;
174 std::string mount_path; member in struct:chromeos::disks::DiskMountManager::MountPointInfo
185 mount_path(mount),
191 // MountPointMap key is mount_path.
257 virtual void UnmountPath(const std::string& mount_path,
262 // Example: mount_path: /media/VOLUME_LABEL
263 virtual void FormatMountedDevice(const std::string& mount_path) = 0
    [all...]
disk_mount_manager_unittest.cc 27 const char* mount_path; member in struct:__anon10664::TestDiskInfo
50 const char* mount_path; member in struct:__anon10664::TestMountPointInfo
59 "/device/mount_path",
84 "/archive/mount_path",
90 "/device/mount_path",
148 bool HasMountPoint(const std::string& mount_path) {
151 return mount_points.find(mount_path) != mount_points.end();
159 disk.mount_path,
185 mount_point.mount_path,
224 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
63 virtual void UnmountPath(const std::string& mount_path,
66 virtual void FormatMountedDevice(const std::string& mount_path) OVERRIDE;
fake_disk_mount_manager.cc 23 const std::string& mount_path,
25 : mount_path(mount_path),
87 void FakeDiskMountManager::UnmountPath(const std::string& mount_path,
90 unmount_requests_.push_back(UnmountRequest(mount_path, options));
92 MountPointMap::iterator iter = mount_points_.find(mount_path);
104 void FakeDiskMountManager::FormatMountedDevice(const std::string& mount_path) {
volume_manager.cc 126 volume_info.mount_path.BaseName().AsUTF8Unsafe());
138 volume_info.mount_path = drive_path;
151 volume_info.mount_path = downloads_path;
166 volume_info.mount_path = path;
180 volume_info.mount_path = base::FilePath(mount_point.mount_path);
182 volume_info.volume_label = volume_info.mount_path.BaseName().AsUTF8Unsafe();
204 volume_info.mount_path = privet_volume_info.volume_path;
220 volume_info.mount_path = file_system_info.mount_path();
700 std::string mount_path = local
    [all...]
mounted_disk_monitor.cc 115 if (!is_resuming_ && !disk->mount_path().empty())
volume_manager.h 92 base::FilePath mount_path; member in struct:file_manager::VolumeInfo
  /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/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 321 base::FilePath mount_path = CreateMountPoint(kMountPointA, false); local
323 ASSERT_FALSE(mount_path.empty());
326 mount_path.value(),
343 EXPECT_EQ(mount_path.value(), observer().last_attached().location());
349 base::FilePath mount_path = CreateMountPoint(kMountPointA, true); local
351 ASSERT_FALSE(mount_path.empty());
356 mount_path.value(),
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_private_apitest.cc 40 std::string mount_path; member in struct:__anon7682::TestMountPoint
189 kTestMountPoints[i].mount_path,
191 kTestMountPoints[i].mount_path,
205 kTestMountPoints[i].mount_path,
private_api_mount.cc 91 volumes[i].mount_path.IsParent(path)) {
172 volume_info.mount_path.value(),
214 log_string += volume_info_list[i].mount_path.AsUTF8Unsafe();
private_api_file_system.cc 51 // Retrieves total and remaining available size on |mount_path|.
52 void GetSizeStatsOnBlockingPool(const std::string& mount_path,
56 if (HANDLE_EINTR(statvfs(mount_path.c_str(), &stat)) == 0) {
303 volume_info.mount_path,
439 volume_info.mount_path.value(),
533 volume_info.mount_path.AsUTF8Unsafe());
event_router.h 165 // |mount_path|. Disk.mount_path() is empty, since it is being filled out
168 const base::FilePath& mount_path);
  /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
198 const std::string& mount_path)
202 mount_path_(mount_path) {
208 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/imageburner/
burn_device_handler_unittest.cc 88 virtual void UnmountPath(const std::string& mount_path,
91 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 1691 milliseconds

1 2