internal/poll.FD.Sysfd (field)
52 uses
internal/poll (current package)
fd_fsync_darwin.go#L18: _, err := fcntl(fd.Sysfd, syscall.F_FULLFSYNC, 0)
fd_poll_runtime.go#L39: ctx, errno := runtime_pollOpen(uintptr(fd.Sysfd))
fd_posix.go#L29: return syscall.Shutdown(fd.Sysfd, how)
fd_posix.go#L39: return syscall.Fchown(fd.Sysfd, uid, gid)
fd_posix.go#L50: return syscall.Ftruncate(fd.Sysfd, size)
fd_posix.go#L61: f(uintptr(fd.Sysfd))
fd_unix.go#L22: Sysfd int
fd_unix.go#L83: err := CloseFunc(fd.Sysfd)
fd_unix.go#L85: fd.Sysfd = -1
fd_unix.go#L131: return syscall.SetNonblock(fd.Sysfd, false)
fd_unix.go#L162: n, err := ignoringEINTRIO(syscall.Read, fd.Sysfd, p)
fd_unix.go#L192: n, err = syscall.Pread(fd.Sysfd, p, off)
fd_unix.go#L215: n, sa, err := syscall.Recvfrom(fd.Sysfd, p, 0)
fd_unix.go#L242: n, oobn, flags, sa, err := syscall.Recvmsg(fd.Sysfd, p, oob, 0)
fd_unix.go#L274: n, err := ignoringEINTRIO(syscall.Write, fd.Sysfd, p[nn:max])
fd_unix.go#L310: n, err := syscall.Pwrite(fd.Sysfd, p[nn:max], off+int64(nn))
fd_unix.go#L339: err := syscall.Sendto(fd.Sysfd, p, 0, sa)
fd_unix.go#L365: n, err := syscall.SendmsgN(fd.Sysfd, p, oob, sa, 0)
fd_unix.go#L392: s, rsa, errcall, err := accept(fd.Sysfd)
fd_unix.go#L421: return syscall.Seek(fd.Sysfd, offset, whence)
fd_unix.go#L433: n, err := ignoringEINTRIO(syscall.ReadDirent, fd.Sysfd, buf)
fd_unix.go#L454: return syscall.Fchmod(fd.Sysfd, mode)
fd_unix.go#L464: return syscall.Fchdir(fd.Sysfd)
fd_unix.go#L474: return syscall.Fstat(fd.Sysfd, s)
fd_unix.go#L521: return DupCloseOnExec(fd.Sysfd)
fd_unix.go#L537: return ignoringEINTRIO(syscall.Write, fd.Sysfd, p)
fd_unix.go#L550: if f(uintptr(fd.Sysfd)) {
fd_unix.go#L569: if f(uintptr(fd.Sysfd)) {
sockopt.go#L17: return syscall.SetsockoptInt(fd.Sysfd, level, name, arg)
sockopt.go#L26: return syscall.SetsockoptInet4Addr(fd.Sysfd, level, name, arg)
sockopt.go#L35: return syscall.SetsockoptLinger(fd.Sysfd, level, name, l)
sockopt_unix.go#L17: return syscall.SetsockoptByte(fd.Sysfd, level, name, arg)
sockoptip.go#L17: return syscall.SetsockoptIPMreq(fd.Sysfd, level, name, mreq)
sockoptip.go#L26: return syscall.SetsockoptIPv6Mreq(fd.Sysfd, level, name, mreq)
writev.go#L60: wrote, err = writev(fd.Sysfd, iovecs)
net
fd_unix.go#L29: Sysfd: sysfd,
fd_unix.go#L59: switch err := connectFunc(fd.pfd.Sysfd, ra); err {
fd_unix.go#L149: nerr, err := getsockoptIntFunc(fd.pfd.Sysfd, syscall.SOL_SOCKET, syscall.SO_ERROR)
fd_unix.go#L161: if rsa, err := syscall.Getpeername(fd.pfd.Sysfd); err == nil {
fd_unix.go#L188: lsa, _ := syscall.Getsockname(netfd.pfd.Sysfd)
sock_posix.go#L138: if err = syscall.Bind(fd.pfd.Sysfd, lsa); err != nil {
sock_posix.go#L164: lsa, _ = syscall.Getsockname(fd.pfd.Sysfd)
sock_posix.go#L167: } else if rsa, _ = syscall.Getpeername(fd.pfd.Sysfd); rsa != nil {
sock_posix.go#L177: if err = setDefaultListenerSockopts(fd.pfd.Sysfd); err != nil {
sock_posix.go#L193: if err = syscall.Bind(fd.pfd.Sysfd, lsa); err != nil {
sock_posix.go#L196: if err = listenFunc(fd.pfd.Sysfd, backlog); err != nil {
sock_posix.go#L202: lsa, _ = syscall.Getsockname(fd.pfd.Sysfd)
sock_posix.go#L218: if err := setDefaultMulticastSockopts(fd.pfd.Sysfd); err != nil {
sock_posix.go#L245: if err = syscall.Bind(fd.pfd.Sysfd, lsa); err != nil {
sock_posix.go#L251: lsa, _ = syscall.Getsockname(fd.pfd.Sysfd)
os
file_unix.go#L89: return uintptr(f.pfd.Sysfd)
file_unix.go#L129: Sysfd: fdi,
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |