Lines Matching refs:mountPoint
54 mountPoint("/mnt/" + luksName + "_fs"), eraseMaxGeometry(eraseMaxGeometry), in EStoraged()
338 return mountPoint; in getMountPoint()
478 if (!fsIface->directoryExists(std::filesystem::path(mountPoint))) in mountFilesystem()
481 fsIface->createDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()
484 lg2::error("Failed to create mount point: {DIR}", "DIR", mountPoint, in mountFilesystem()
492 retval = fsIface->doMount(cryptDevicePath.c_str(), mountPoint.c_str(), in mountFilesystem()
500 fsIface->removeDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()
503 lg2::error("Failed to remove mount point: {DIR}", "DIR", mountPoint, in mountFilesystem()
510 lg2::info("Successfully mounted filesystem at {DIR}", "DIR", mountPoint, in mountFilesystem()
517 int retval = fsIface->doUnmount(mountPoint.c_str()); in unmountFilesystem()
527 bool success = fsIface->removeDirectory(std::filesystem::path(mountPoint)); in unmountFilesystem()
530 lg2::error("Failed to remove mount point {DIR}", "DIR", mountPoint, in unmountFilesystem()
536 lg2::info("Successfully unmounted filesystem at {DIR}", "DIR", mountPoint, in unmountFilesystem()