type HostUtil …
func NewHostUtil() *HostUtil { … }
var errUnsupported …
func (hu *HostUtil) DeviceOpened(pathname string) (bool, error) { … }
func (hu *HostUtil) PathIsDevice(pathname string) (bool, error) { … }
func (hu *HostUtil) GetDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error) { … }
func (hu *HostUtil) MakeRShared(path string) error { … }
func (hu *HostUtil) GetFileType(pathname string) (FileType, error) { … }
func (hu *HostUtil) MakeFile(pathname string) error { … }
func (hu *HostUtil) MakeDir(pathname string) error { … }
func (hu *HostUtil) PathExists(pathname string) (bool, error) { … }
func (hu *HostUtil) EvalHostSymlinks(pathname string) (string, error) { … }
func (hu *HostUtil) GetOwner(pathname string) (int64, int64, error) { … }
func (hu *HostUtil) GetSELinuxSupport(pathname string) (bool, error) { … }
func (hu *HostUtil) GetMode(pathname string) (os.FileMode, error) { … }
func getDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error) { … }
func (hu *HostUtil) GetSELinuxMountContext(pathname string) (string, error) { … }