Home
last modified time | relevance | path

Searched refs:mount (Results 1 – 21 of 21) sorted by relevance

/system/vold/fs/
DExt4.cpp92 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts); in Check()
143 rc = mount(c_source, c_target, "ext4", flags, NULL); in Mount()
148 rc = mount(c_source, c_target, "ext4", flags, NULL); in Mount()
DF2fs.cpp58 int res = mount(c_source, c_target, "f2fs", flags, NULL); in Mount()
62 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL); in Mount()
DVfat.cpp155 rc = mount(c_source, c_target, "vfat", flags, mountData); in Mount()
160 rc = mount(c_source, c_target, "vfat", flags, mountData); in Mount()
/system/core/rootdir/
Dinit.rc32 # Create cgroup mount point for cpu accounting
34 mount cgroup none /acct cpuacct
37 # Create cgroup mount point for memory
38 mount tmpfs none /sys/fs/cgroup mode=0750,uid=0,gid=1000
40 mount cgroup none /sys/fs/cgroup/memory memory
58 mount tmpfs tmpfs /mnt mode=0755,uid=0,gid=1000
86 mount cgroup none /dev/memcg memory
114 # Create cgroup mount points for process groups
116 mount cgroup none /dev/cpuctl cpu
134 mount cpuset none /dev/cpuset
[all …]
/system/extras/tests/sdcard/
DREADME13 Build, install and mount debugfs. In this directory with a properly
19 adb shell mount -t debugfs none /sys/kernel/debug
/system/core/adb/
Dremount_service.cpp78 if (mount(dev.c_str(), dir, "none", MS_REMOUNT, nullptr) == -1) { in remount_partition()
/system/vold/
DVolumeBase.h100 status_t mount();
DMoveTask.cpp164 vol->mount(); in bringOffline()
DVolumeBase.cpp198 status_t VolumeBase::mount() { in mount() function in android::vold::VolumeBase
DUtils.cpp156 if (::mount(source.c_str(), target.c_str(), "", MS_BIND, NULL)) { in BindMount()
DCommandListener.cpp217 int res = vol->mount(); in runCommand()
DVolumeManager.cpp592 if (TEMP_FAILURE_RETRY(mount(storageSource.c_str(), "/storage", in remountUid()
602 if (TEMP_FAILURE_RETRY(mount(userSource.c_str(), "/storage/self", in remountUid()
/system/core/init/
Dbuiltins.cpp318 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
347 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
367 if (mount(source, target, system, flags, options) < 0) { in do_mount()
Dinit.cpp1008 mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755"); in main()
1011 mount("devpts", "/dev/pts", "devpts", 0, NULL); in main()
1012 mount("proc", "/proc", "proc", 0, NULL); in main()
1013 mount("sysfs", "/sys", "sysfs", 0, NULL); in main()
Dkeywords.h74 KEYWORD(mount, COMMAND, 3, do_mount)
Dreadme.txt226 mount <type> <device> <dir> [ <flag> ]* [<options>]
227 Attempt to mount the named device at the directory <dir>
/system/core/fs_mgr/
Dfs_mgr.c124 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts); in check_fs()
233 ret = mount(source, target, rec->fs_type, mountflags, rec->fs_options); in __mount()
738 ret = mount("tmpfs", n_name, "tmpfs", in fs_mgr_do_tmpfs_mount()
/system/core/toolbox/
DAndroid.mk50 mount \
Dmount.c206 if (mount(dev, dir, s, rwflag, data) == -1) { in do_mount()
/system/core/libnativebridge/
Dnative_bridge.cc304 if (TEMP_FAILURE_RETRY(mount(cpuinfo_path, // Source. in PreInitializeNativeBridge()
/system/core/sdcard/
Dsdcard.c1757 if (mount("/dev/fuse", fuse->dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC | in fuse_setup()