Home
last modified time | relevance | path

Searched refs:UMOUNT_NOFOLLOW (Results 1 – 4 of 4) sorted by relevance

/system/apex/apexd/
Dapexd_private.cpp78 int rc = umount2(target.c_str(), UMOUNT_NOFOLLOW); in BindMount()
Dapexd.cpp479 if (umount2(mountPoint.c_str(), UMOUNT_NOFOLLOW) != 0) { in MountPackageImpl()
530 if (umount2(data.mount_point.c_str(), UMOUNT_NOFOLLOW) != 0 && in Unmount()
877 if (umount2(mount_point.c_str(), UMOUNT_NOFOLLOW) != 0) { in UnmountPackage()
2261 if (umount2(bind_mount.c_str(), UMOUNT_NOFOLLOW) != 0) { in unmountAll()
/system/vold/
DUtils.cpp52 #ifndef UMOUNT_NOFOLLOW
53 #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ macro
145 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { in ForceUnmount()
154 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { in ForceUnmount()
160 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { in ForceUnmount()
166 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { in ForceUnmount()
DAppFuseUtil.cpp85 if (umount2(path.c_str(), UMOUNT_NOFOLLOW | MNT_DETACH) != 0 && errno != EINVAL && in RunCommand()