Home | History | Annotate | Download | only in dist

Lines Matching refs:mount_point

354 /// \param mount_point The file system to unmount.
358 unmount_with_unmount2(const char* mount_point)
362 if (unmount(mount_point, 0) == -1) {
364 mount_point);
375 /// \param mount_point The file system to unmount.
379 unmount_with_umount8(const char* mount_point)
387 const int ret = execlp(UMOUNT, "umount", mount_point, NULL);
402 mount_point);
537 /// \param mount_point The file system to unmount.
541 kyua_fs_unmount(const char* mount_point)
548 error = kyua_fs_make_absolute(mount_point, &abs_mount_point);