type net.UnixAddr
42 uses
net (current package)
dial.go#L590: case *UnixAddr:
dial.go#L591: la, _ := la.(*UnixAddr)
dial.go#L640: case *UnixAddr:
dial.go#L672: case *UnixAddr:
file_unix.go#L82: case *UnixAddr:
file_unix.go#L97: case *UnixAddr:
file_unix.go#L114: case *UnixAddr:
unixsock.go#L22: type UnixAddr struct {
unixsock.go#L29: func (a *UnixAddr) Network() string {
unixsock.go#L33: func (a *UnixAddr) String() string {
unixsock.go#L40: func (a *UnixAddr) isWildcard() bool {
unixsock.go#L44: func (a *UnixAddr) opAddr() Addr {
unixsock.go#L57: func ResolveUnixAddr(network, address string) (*UnixAddr, error) {
unixsock.go#L60: return &UnixAddr{Name: address, Net: network}, nil
unixsock.go#L106: func (c *UnixConn) ReadFromUnix(b []byte) (int, *UnixAddr, error) {
unixsock.go#L139: func (c *UnixConn) ReadMsgUnix(b, oob []byte) (n, oobn, flags int, addr *UnixAddr, err error) {
unixsock.go#L151: func (c *UnixConn) WriteToUnix(b []byte, addr *UnixAddr) (int, error) {
unixsock.go#L167: a, ok := addr.(*UnixAddr)
unixsock.go#L184: func (c *UnixConn) WriteMsgUnix(b, oob []byte, addr *UnixAddr) (n, oobn int, err error) {
unixsock.go#L203: func DialUnix(network string, laddr, raddr *UnixAddr) (*UnixConn, error) {
unixsock.go#L317: func ListenUnix(network string, laddr *UnixAddr) (*UnixListener, error) {
unixsock.go#L337: func ListenUnixgram(network string, laddr *UnixAddr) (*UnixConn, error) {
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#L86: func (a *UnixAddr) family() int {
unixsock_posix.go#L90: func (a *UnixAddr) sockaddr(family int) (syscall.Sockaddr, error) {
unixsock_posix.go#L97: func (a *UnixAddr) toLocal(net string) sockaddr {
unixsock_posix.go#L101: func (c *UnixConn) readFrom(b []byte) (int, *UnixAddr, error) {
unixsock_posix.go#L102: var addr *UnixAddr
unixsock_posix.go#L107: addr = &UnixAddr{Name: sa.Name, Net: sotypeToNet(c.fd.sotype)}
unixsock_posix.go#L113: func (c *UnixConn) readMsg(b, oob []byte) (n, oobn, flags int, addr *UnixAddr, err error) {
unixsock_posix.go#L123: addr = &UnixAddr{Name: sa.Name, Net: sotypeToNet(c.fd.sotype)}
unixsock_posix.go#L129: func (c *UnixConn) writeTo(b []byte, addr *UnixAddr) (int, error) {
unixsock_posix.go#L143: func (c *UnixConn) writeMsg(b, oob []byte, addr *UnixAddr) (n, oobn int, err error) {
unixsock_posix.go#L157: func (sd *sysDialer) dialUnix(ctx context.Context, laddr, raddr *UnixAddr) (*UnixConn, error) {
unixsock_posix.go#L213: func (sl *sysListener) listenUnix(ctx context.Context, laddr *UnixAddr) (*UnixListener, error) {
unixsock_posix.go#L221: func (sl *sysListener) listenUnixgram(ctx context.Context, laddr *UnixAddr) (*UnixConn, error) {
go.pact.im/x/zapjournal
zapjournal.go#L14: WriteMsgUnix(b, oob []byte, addr *net.UnixAddr) (n, oobn int, err error)
zapjournal.go#L20: return net.ListenUnixgram("unixgram", &net.UnixAddr{Net: "unixgram"})
zapjournal_linux.go#L63: socketAddr := &net.UnixAddr{
google.golang.org/grpc/internal/binarylog
method_logger.go#L428: case *net.UnixAddr: