type golang.org/x/sys/unix.FileHandle
9 uses
golang.org/x/sys/unix (current package)
syscall_linux.go#L2427: type FileHandle struct {
syscall_linux.go#L2432: func NewFileHandle(handleType int32, handle []byte) FileHandle {
syscall_linux.go#L2439: return FileHandle{fh}
syscall_linux.go#L2442: func (fh *FileHandle) Size() int { return int(fh.fileHandle.Bytes) }
syscall_linux.go#L2443: func (fh *FileHandle) Type() int32 { return fh.fileHandle.Type }
syscall_linux.go#L2444: func (fh *FileHandle) Bytes() []byte {
syscall_linux.go#L2454: func NameToHandleAt(dirfd int, path string, flags int) (handle FileHandle, mountID int, err error) {
syscall_linux.go#L2477: return FileHandle{fh}, int(mid), nil
syscall_linux.go#L2483: func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {