syscall.SockaddrUnix.Name (field)
13 uses
syscall (current package)
syscall_linux.go#L540: name := sa.Name
syscall_linux.go#L649: sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
syscall_unix.go#L281: Name string
net
unixsock_posix.go#L54: return &UnixAddr{Name: s.Name, Net: "unix"}
unixsock_posix.go#L61: return &UnixAddr{Name: s.Name, Net: "unixgram"}
unixsock_posix.go#L68: return &UnixAddr{Name: s.Name, Net: "unixpacket"}
unixsock_posix.go#L94: return &syscall.SockaddrUnix{Name: a.Name}, nil
unixsock_posix.go#L106: if sa.Name != "" {
unixsock_posix.go#L107: addr = &UnixAddr{Name: sa.Name, Net: sotypeToNet(c.fd.sotype)}
unixsock_posix.go#L122: if sa.Name != "" {
unixsock_posix.go#L123: addr = &UnixAddr{Name: sa.Name, Net: sotypeToNet(c.fd.sotype)}
unixsock_posix.go#L139: sa := &syscall.SockaddrUnix{Name: addr.Name}
unixsock_posix.go#L152: sa = &syscall.SockaddrUnix{Name: addr.Name}
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |