net.UnixAddr.Name (field)

13 uses

	net (current package)
		file_unix.go#L98: 		return &UnixListener{fd: fd, path: laddr.Name, unlink: false}, nil
		unixsock.go#L23: 	Name string
		unixsock.go#L37: 	return a.Name
		unixsock.go#L41: 	return a == nil || a.Name == ""
		unixsock.go#L60: 		return &UnixAddr{Name: address, Net: network}, nil
		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#L107: 			addr = &UnixAddr{Name: sa.Name, Net: sotypeToNet(c.fd.sotype)}
		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}