type golang.org/x/sys/unix.FileHandle
9 uses
golang.org/x/sys/unix (current package)
syscall_linux.go#L2343: type FileHandle struct {
syscall_linux.go#L2348: func NewFileHandle(handleType int32, handle []byte) FileHandle {
syscall_linux.go#L2355: return FileHandle{fh}
syscall_linux.go#L2358: func (fh *FileHandle) Size() int { return int(fh.fileHandle.Bytes) }
syscall_linux.go#L2359: func (fh *FileHandle) Type() int32 { return fh.fileHandle.Type }
syscall_linux.go#L2360: func (fh *FileHandle) Bytes() []byte {
syscall_linux.go#L2370: func NameToHandleAt(dirfd int, path string, flags int) (handle FileHandle, mountID int, err error) {
syscall_linux.go#L2393: return FileHandle{fh}, int(mid), nil
syscall_linux.go#L2399: func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {