Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for openByHandleAt (0.37 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		if err != nil {
    			return
    		}
    		return FileHandle{fh}, int(mid), nil
    	}
    }
    
    // OpenByHandleAt wraps the open_by_handle_at system call; it opens a
    // file via a handle as previously returned by NameToHandleAt.
    func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {
    	return openByHandleAt(mountFD, handle.fileHandle, flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_OPEN_BY_HANDLE_AT, uintptr(mountFD), uintptr(unsafe.Pointer(fh)), uintptr(flags))
    	fd = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top