Searched refs:mountEntry (Results 1 – 1 of 1) sorted by relevance
23 struct mntent *mountEntry; in find_mount_point() local42 while ((mountEntry = getmntent(mtab_fp)) != NULL) { in find_mount_point()46 if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(mountEntry->mnt_fsname, "rootfs") == 0) in find_mount_point()49 if (strcmp(name, mountEntry->mnt_dir) == 0 in find_mount_point()50 || strcmp(name, mountEntry->mnt_fsname) == 0 in find_mount_point()59 if (mountEntry->mnt_fsname[0] == '/' in find_mount_point()64 && stat(mountEntry->mnt_fsname, &s) == 0 in find_mount_point()70 if (stat(mountEntry->mnt_dir, &s) == 0 in find_mount_point()78 return mountEntry; in find_mount_point()