/system/extras/tests/fstest/ |
D | mounts-test.sh | 5 adb shell mount | grep -q /sdcard 14 adb shell mount | grep /sdcard | grep -q $i
|
D | perm_checker.conf | 44 /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/ |
D | Fat.cpp | 50 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()
|
D | Ext4.cpp | 60 rc = mount(fsPath, mountPoint, "ext4", flags, NULL); in doMount() 65 rc = mount(fsPath, mountPoint, "ext4", flags, NULL); in doMount()
|
D | DirectVolume.cpp | 89 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()
|
D | Volume.cpp | 490 if (mount(secure_path, SEC_ASECDIR_EXT, "", MS_BIND, NULL)) { in mountAsecExternal()
|
/system/core/rootdir/ |
D | init.rc | 45 # 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/ |
D | mountd.conf | 4 mount {
|
/system/core/init/ |
D | readme.txt | 199 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
|
D | init.c | 1030 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()
|
D | builtins.c | 417 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()
|
D | keywords.h | 71 KEYWORD(mount, COMMAND, 3, do_mount)
|
/system/extras/tests/sdcard/ |
D | README | 13 Build, install and mount debugfs. In this directory with a properly 19 adb shell mount -t debugfs none /sys/kernel/debug
|
/system/core/adb/ |
D | remount_service.c | 105 *dir_ro = mount(dev, dir, "none", MS_REMOUNT, NULL); in remount()
|
/system/core/fs_mgr/ |
D | fs_mgr.c | 116 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/ |
D | mount.c | 206 if (mount(dev, dir, s, rwflag, data) == -1) { in do_mount()
|
D | Android.mk | 169 mount \
|
/system/core/libnativebridge/ |
D | native_bridge.cc | 288 if (TEMP_FAILURE_RETRY(mount(cpuinfo_path, // Source. in PreInitializeNativeBridge()
|
/system/core/sdcard/ |
D | sdcard.c | 1843 res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC, opts); in run()
|