Home | History | Annotate | Download | only in common

Lines Matching refs:mountpoint

682                      const string& mountpoint,
693 int rc = mount(device.c_str(), mountpoint.c_str(), fstype, mountflags,
699 << " on " << mountpoint << " as " << fstype;
707 bool UnmountFilesystem(const string& mountpoint) {
710 if (umount(mountpoint.c_str()) == 0)
717 LOG(INFO) << "Not a mountpoint: " << mountpoint;
720 PLOG(WARNING) << "Error unmounting " << mountpoint << " after " << num_retries
722 if (umount2(mountpoint.c_str(), MNT_DETACH) != 0) {