Searched refs:n_name (Results 1 – 2 of 2) sorted by relevance
/system/core/fs_mgr/include/ |
D | fs_mgr.h | 69 int fs_mgr_do_mount(android::fs_mgr::Fstab* fstab, const char* n_name, char* n_blk_device, 71 int fs_mgr_do_mount(android::fs_mgr::Fstab* fstab, const char* n_name, char* n_blk_device, 75 int fs_mgr_do_tmpfs_mount(const char *n_name);
|
/system/core/fs_mgr/ |
D | fs_mgr.cpp | 1807 static int fs_mgr_do_mount_helper(Fstab* fstab, const std::string& n_name, in fs_mgr_do_mount_helper() argument 1821 if (!fs_match(fstab_entry.mount_point, n_name)) { in fs_mgr_do_mount_helper() 1917 LERROR << "Cannot find mount point " << n_name << " in fstab"; in fs_mgr_do_mount_helper() 1922 int fs_mgr_do_mount(Fstab* fstab, const char* n_name, char* n_blk_device, char* tmp_mount_point) { in fs_mgr_do_mount() argument 1923 return fs_mgr_do_mount_helper(fstab, n_name, n_blk_device, tmp_mount_point, -1, false); in fs_mgr_do_mount() 1926 int fs_mgr_do_mount(Fstab* fstab, const char* n_name, char* n_blk_device, char* tmp_mount_point, in fs_mgr_do_mount() argument 1928 return fs_mgr_do_mount_helper(fstab, n_name, n_blk_device, tmp_mount_point, needs_checkpoint, in fs_mgr_do_mount() 1936 int fs_mgr_do_tmpfs_mount(const char *n_name) in fs_mgr_do_tmpfs_mount() argument 1940 ret = mount("tmpfs", n_name, "tmpfs", MS_NOATIME | MS_NOSUID | MS_NODEV | MS_NOEXEC, in fs_mgr_do_tmpfs_mount() 1943 LERROR << "Cannot mount tmpfs filesystem at " << n_name; in fs_mgr_do_tmpfs_mount()
|