github.com/go-git/go-billy/v5/helper/chroot.ChrootHelper.underlying (field)

18 uses

	github.com/go-git/go-billy/v5/helper/chroot (current package)
		chroot.go#L14: 	underlying billy.Filesystem
		chroot.go#L23: 		underlying: polyfill.New(fs),
		chroot.go#L49: 	f, err := fs.underlying.Create(fullpath)
		chroot.go#L63: 	f, err := fs.underlying.Open(fullpath)
		chroot.go#L77: 	f, err := fs.underlying.OpenFile(fullpath, flag, mode)
		chroot.go#L91: 	return fs.underlying.Stat(fullpath)
		chroot.go#L106: 	return fs.underlying.Rename(from, to)
		chroot.go#L115: 	return fs.underlying.Remove(fullpath)
		chroot.go#L119: 	return fs.underlying.Join(elem...)
		chroot.go#L128: 	f, err := fs.underlying.(billy.TempFile).TempFile(fullpath, prefix)
		chroot.go#L142: 	return fs.underlying.(billy.Dir).ReadDir(fullpath)
		chroot.go#L151: 	return fs.underlying.(billy.Dir).MkdirAll(fullpath, perm)
		chroot.go#L160: 	return fs.underlying.(billy.Symlink).Lstat(fullpath)
		chroot.go#L177: 	return fs.underlying.(billy.Symlink).Symlink(target, link)
		chroot.go#L186: 	target, err := fs.underlying.(billy.Symlink).Readlink(fullpath)
		chroot.go#L209: 	return New(fs.underlying, fullpath), nil
		chroot.go#L217: 	return fs.underlying
		chroot.go#L222: 	return billy.Capabilities(fs.underlying)