HomeSort by relevance Sort by last modified time
    Searched defs:Mount (Results 1 - 5 of 5) sorted by null

  /system/vold/fs/
F2fs.cpp 26 #include <sys/mount.h>
53 status_t Mount(const std::string& source, const std::string& target) {
58 int res = mount(c_source, c_target, "f2fs", flags, NULL);
60 PLOG(ERROR) << "Failed to mount " << source;
62 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL);
64 PLOG(ERROR) << "Failed to mount read-only " << source;
Vfat.cpp 31 #include <sys/mount.h>
121 status_t Mount(const std::string& source, const std::string& target, bool ro,
155 rc = mount(c_source, c_target, "vfat", flags, mountData);
158 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
160 rc = mount(c_source, c_target, "vfat", flags, mountData);
Ext4.cpp 33 #include <sys/mount.h>
80 * First try to mount and unmount the filesystem. We do this because
88 * check. Otherwise, it does nothing. If the kernel cannot mount the
92 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts);
129 status_t Mount(const std::string& source, const std::string& target, bool ro,
143 rc = mount(c_source, c_target, "ext4", flags, NULL);
146 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
148 rc = mount(c_source, c_target, "ext4", flags, NULL);
  /build/tools/releasetools/
edify_generator.py 168 def Mount(self, mount_point, mount_options_by_format=""):
169 """Mount the partition with the given mount_point.
187 self.script.append('mount("%s", "%s", "%s", "%s", "%s");' % (
220 """Format the given partition, specified by its mount point (eg,
285 mount point."""
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
emostore.h 334 virtual HRESULT WINAPI Mount(__LONG32 Timeout) = 0;
372 HRESULT (WINAPI *Mount)(IPublicStoreDB *This,__LONG32 Timeout);
412 #define IPublicStoreDB_Mount(This,Timeout) (This)->lpVtbl->Mount(This,Timeout)
    [all...]

Completed in 2846 milliseconds