Home
last modified time | relevance | path

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

/system/extras/tests/fstest/
Dmounts-test.sh5 adb shell mount | grep -q /sdcard
14 adb shell mount | grep /sdcard | grep -q $i
Dperm_checker.conf44 /dev/android_ums 640 640 mount mount mount mount
105 /dev/socket/mountd 660 660 root mount root mount
109 /dev/socket/usbd 660 660 root mount mount mount
/system/vold/
DFat.cpp50 extern "C" int mount(const char *, const char *, const char *, unsigned long, const void *);
146 rc = mount(fsPath, mountPoint, "vfat", flags, mountData); in doMount()
151 rc = mount(fsPath, mountPoint, "vfat", flags, mountData); in doMount()
DExt4.cpp60 rc = mount(fsPath, mountPoint, "ext4", flags, NULL); in doMount()
65 rc = mount(fsPath, mountPoint, "ext4", flags, NULL); in doMount()
DDirectVolume.cpp89 char mount[PATH_MAX]; in DirectVolume() local
91 snprintf(mount, PATH_MAX, "%s/%s", Volume::MEDIA_DIR, rec->label); in DirectVolume()
92 mMountpoint = strdup(mount); in DirectVolume()
93 snprintf(mount, PATH_MAX, "%s/%s", Volume::FUSE_DIR, rec->label); in DirectVolume()
94 mFuseMountpoint = strdup(mount); in DirectVolume()
DVolume.cpp490 if (mount(secure_path, SEC_ASECDIR_EXT, "", MS_BIND, NULL)) { in mountAsecExternal()
/system/core/rootdir/
Dinit.rc45 # Create cgroup mount point for cpu accounting
47 mount cgroup none /acct cpuacct
50 # Create cgroup mount point for memory
51 mount tmpfs none /sys/fs/cgroup mode=0750,uid=0,gid=1000
53 mount cgroup none /sys/fs/cgroup/memory memory
83 # Secure container public mount points.
85 mount tmpfs tmpfs /mnt/asec mode=0755,gid=1000
87 # Filesystem image public mount points.
89 mount tmpfs tmpfs /mnt/obb mode=0755,gid=1000
93 mount cgroup none /dev/memcg memory
[all …]
/system/core/rootdir/etc/
Dmountd.conf4 mount {
/system/core/init/
Dreadme.txt199 mount <type> <device> <dir> [ <mountoption> ]*
200 Attempt to mount the named device at the directory <dir>
293 mount tmpfs tmpfs /dev
296 mount devpts devpts /dev/pts
297 mount proc proc /proc
298 mount sysfs sysfs /sys
307 mount yaffs2 mtd@system /system
308 mount yaffs2 mtd@userdata /data
Dinit.c1030 mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755"); in main()
1033 mount("devpts", "/dev/pts", "devpts", 0, NULL); in main()
1034 mount("proc", "/proc", "proc", 0, NULL); in main()
1035 mount("sysfs", "/sys", "sysfs", 0, NULL); in main()
Dbuiltins.c417 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
445 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
465 if (mount(source, target, system, flags, options) < 0) { in do_mount()
Dkeywords.h71 KEYWORD(mount, COMMAND, 3, do_mount)
/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.c105 *dir_ro = mount(dev, dir, "none", MS_REMOUNT, NULL); in remount()
/system/core/fs_mgr/
Dfs_mgr.c116 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts); in check_fs()
210 ret = mount(source, target, rec->fs_type, mountflags, rec->fs_options); in __mount()
544 ret = mount("tmpfs", n_name, "tmpfs", in fs_mgr_do_tmpfs_mount()
/system/core/toolbox/
Dmount.c206 if (mount(dev, dir, s, rwflag, data) == -1) { in do_mount()
DAndroid.mk169 mount \
/system/core/libnativebridge/
Dnative_bridge.cc288 if (TEMP_FAILURE_RETRY(mount(cpuinfo_path, // Source. in PreInitializeNativeBridge()
/system/core/sdcard/
Dsdcard.c1843 res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC, opts); in run()