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

  /system/vold/fs/
Exfat.cpp 17 #include <sys/mount.h>
57 status_t Mount(const std::string& source, const std::string& target, int ownerUid, int ownerGid,
63 if (mount(source.c_str(), target.c_str(), "exfat", mountFlags, mountData.c_str()) == 0) {
67 PLOG(ERROR) << "Mount failed; attempting read-only";
69 if (mount(source.c_str(), target.c_str(), "exfat", mountFlags, mountData.c_str()) == 0) {
F2fs.cpp 28 #include <sys/mount.h>
55 status_t Mount(const std::string& source, const std::string& target) {
60 int res = mount(c_source, c_target, "f2fs", flags, NULL);
62 PLOG(ERROR) << "Failed to mount " << source;
64 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL);
66 PLOG(ERROR) << "Failed to mount read-only " << source;
Vfat.cpp 31 #include <sys/mount.h>
116 status_t Mount(const std::string& source, const std::string& target, bool ro,
135 rc = mount(c_source, c_target, "vfat", flags, mountData.c_str());
138 LOG(ERROR) << source << " appears to be a read only filesystem - retrying mount RO";
140 rc = mount(c_source, c_target, "vfat", flags, mountData.c_str());
Ext4.cpp 33 #include <sys/mount.h>
83 * First try to mount and unmount the filesystem. We do this because
91 * check. Otherwise, it does nothing. If the kernel cannot mount the
95 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts);
132 status_t Mount(const std::string& source, const std::string& target, bool ro,
146 rc = mount(c_source, c_target, "ext4", flags, NULL);
149 LOG(ERROR) << source << " appears to be a read only filesystem - retrying mount RO";
151 rc = mount(c_source, c_target, "ext4", flags, NULL);
  /build/make/tools/releasetools/
edify_generator.py 209 def Mount(self, mount_point, mount_options_by_format=""):
210 """Mount the partition with the given mount_point.
228 self.script.append('mount("%s", "%s", "%s", "%s", "%s");' % (
256 """Format the given partition, specified by its mount point (eg,
292 mount point."""
test_ota_from_target_files.py 81 def Mount(self, *args):
82 self.script.append(('Mount',) + args)
239 self.assertEqual([('Mount', '/oem', None)], script_writer.script)
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_plan9.go 342 //sys mount(fd int, afd int, old string, flag int, aname string) (err error)
343 func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
345 return mount(fd, afd, old, flag, aname)
syscall_linux.go 791 //sys mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
793 func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
797 return mount(source, target, fstype, flags, nil)
803 return mount(source, target, fstype, flags, datap)
978 // Mount
  /prebuilts/go/linux-x86/src/syscall/
syscall_plan9.go 342 //sys mount(fd int, afd int, old string, flag int, aname string) (err error)
343 func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
345 return mount(fd, afd, old, flag, aname)
syscall_linux.go 791 //sys mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
793 func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
797 return mount(source, target, fstype, flags, nil)
803 return mount(source, target, fstype, flags, datap)
978 // Mount
  /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 152 milliseconds