type net.UnixConn

23 uses

	net (current package)
		splice_linux.go#L30: 	} else if uc, ok := r.(*UnixConn); ok {
		unixsock.go#L68: type UnixConn struct {
		unixsock.go#L74: func (c *UnixConn) SyscallConn() (syscall.RawConn, error) {
		unixsock.go#L83: func (c *UnixConn) CloseRead() error {
		unixsock.go#L95: func (c *UnixConn) CloseWrite() error {
		unixsock.go#L106: func (c *UnixConn) ReadFromUnix(b []byte) (int, *UnixAddr, error) {
		unixsock.go#L118: func (c *UnixConn) ReadFrom(b []byte) (int, Addr, 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#L163: func (c *UnixConn) WriteTo(b []byte, addr Addr) (int, error) {
		unixsock.go#L184: func (c *UnixConn) WriteMsgUnix(b, oob []byte, addr *UnixAddr) (n, oobn int, err error) {
		unixsock.go#L195: func newUnixConn(fd *netFD) *UnixConn { return &UnixConn{conn{fd}} }
		unixsock.go#L203: func DialUnix(network string, laddr, raddr *UnixAddr) (*UnixConn, error) {
		unixsock.go#L243: func (l *UnixListener) AcceptUnix() (*UnixConn, error) {
		unixsock.go#L337: func ListenUnixgram(network string, laddr *UnixAddr) (*UnixConn, error) {
		unixsock_posix.go#L101: func (c *UnixConn) readFrom(b []byte) (int, *UnixAddr, error) {
		unixsock_posix.go#L113: func (c *UnixConn) readMsg(b, oob []byte) (n, oobn, flags int, addr *UnixAddr, err error) {
		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#L171: func (ln *UnixListener) accept() (*UnixConn, error) {
		unixsock_posix.go#L233: func (sl *sysListener) listenUnixgram(ctx context.Context, laddr *UnixAddr) (*UnixConn, error) {