type golang.org/x/sys/unix.FileHandle
9 uses
golang.org/x/sys/unix (current package)
syscall_linux.go#L2249: type FileHandle struct {
syscall_linux.go#L2254: func NewFileHandle(handleType int32, handle []byte) FileHandle {
syscall_linux.go#L2261: return FileHandle{fh}
syscall_linux.go#L2264: func (fh *FileHandle) Size() int { return int(fh.fileHandle.Bytes) }
syscall_linux.go#L2265: func (fh *FileHandle) Type() int32 { return fh.fileHandle.Type }
syscall_linux.go#L2266: func (fh *FileHandle) Bytes() []byte {
syscall_linux.go#L2276: func NameToHandleAt(dirfd int, path string, flags int) (handle FileHandle, mountID int, err error) {
syscall_linux.go#L2299: return FileHandle{fh}, int(mid), nil
syscall_linux.go#L2305: func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {