HomeSort by relevance Sort by last modified time
    Searched refs:mount_name (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/storage/browser/fileapi/
external_mount_points.h 31 // filesystem:<origin>/external/<mount_name>/relative/path
42 // is identified by a URL "filesystem:.../external/mount_name".
45 // the mount_name "removable", a filesystem URL like
49 // The |mount_name| should NOT contain a path separator '/'.
61 // by calling RevokeFileSystem with |mount_name|.
62 bool RegisterFileSystem(const std::string& mount_name,
69 virtual bool RevokeFileSystem(const std::string& mount_name) OVERRIDE;
70 virtual bool GetRegisteredPath(const std::string& mount_name,
74 std::string* mount_name,
85 // Returns a list of registered MountPointInfos (of <mount_name, path>)
    [all...]
external_mount_points.cc 96 const std::string& mount_name,
107 if (!ValidateNewMountPoint(mount_name, type, path))
110 instance_map_[mount_name] = new Instance(type, path, mount_option);
112 path_to_name_map_.insert(std::make_pair(path, mount_name));
122 bool ExternalMountPoints::RevokeFileSystem(const std::string& mount_name) {
124 NameToInstance::iterator found = instance_map_.find(mount_name);
148 std::string* mount_name,
153 DCHECK(mount_name);
160 // The virtual_path should comprise of <mount_name> and <relative_path> parts.
181 *mount_name = maybe_mount_name
293 std::string mount_name; local
    [all...]
mount_points.h 49 // Revokes a mount point identified by |mount_name|.
50 // Returns false if the |mount_name| is not (no longer) registered.
52 virtual bool RevokeFileSystem(const std::string& mount_name) = 0;
71 // Returns the mount point root path registered for a given |mount_name|.
72 // Returns false if the given |mount_name| is not valid.
73 virtual bool GetRegisteredPath(const std::string& mount_name,
78 // |mount_name|, |type|, and |path| if the <mount_name> part embedded in
88 std::string* mount_name,
isolated_context.cc 434 std::string mount_name;
439 if (!CrackVirtualPath(url.path(), &mount_name, &cracked_type,
447 !url.filesystem_id().empty() ? url.filesystem_id() : mount_name,
449 cracked_mount_name.empty() ? mount_name : cracked_mount_name,
  /external/chromium_org/storage/common/fileapi/
file_system_util.h 171 // and |mount_name|.
174 const std::string& mount_name);
file_system_util.cc 469 const std::string& mount_name) {
472 if (base::FilePath::FromUTF8Unsafe(mount_name).ReferencesParent())
474 root.append(net::EscapePath(mount_name));

Completed in 352 milliseconds