Home
last modified time | relevance | path

Searched refs:n_name (Results 1 – 2 of 2) sorted by relevance

/system/core/fs_mgr/include/
Dfs_mgr.h67 int fs_mgr_do_mount(android::fs_mgr::Fstab* fstab, const char* n_name, char* n_blk_device,
69 int fs_mgr_do_mount(android::fs_mgr::Fstab* fstab, const char* n_name, char* n_blk_device,
73 int fs_mgr_do_tmpfs_mount(const char *n_name);
/system/core/fs_mgr/
Dfs_mgr.cpp1380 static int fs_mgr_do_mount_helper(Fstab* fstab, const std::string& n_name, in fs_mgr_do_mount_helper() argument
1394 if (!fs_match(fstab_entry.mount_point, n_name)) { in fs_mgr_do_mount_helper()
1488 LERROR << "Cannot find mount point " << n_name << " in fstab"; in fs_mgr_do_mount_helper()
1493 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
1494 return fs_mgr_do_mount_helper(fstab, n_name, n_blk_device, tmp_mount_point, -1); in fs_mgr_do_mount()
1497 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
1499 return fs_mgr_do_mount_helper(fstab, n_name, n_blk_device, tmp_mount_point, needs_checkpoint); in fs_mgr_do_mount()
1506 int fs_mgr_do_tmpfs_mount(const char *n_name) in fs_mgr_do_tmpfs_mount() argument
1510 ret = mount("tmpfs", n_name, "tmpfs", MS_NOATIME | MS_NOSUID | MS_NODEV | MS_NOEXEC, in fs_mgr_do_tmpfs_mount()
1513 LERROR << "Cannot mount tmpfs filesystem at " << n_name; in fs_mgr_do_tmpfs_mount()