taglinefilesource code
newsock94include/linux/net.hint  (*dup)    (struct socket *newsock, struct socket *oldsock);
newsock101include/linux/net.hint  (*accept)  (struct socket *sock, struct socket *newsock,
newsock1148net/appletalk/ddp.cstatic int atalk_dup(struct socket *newsock,struct socket *oldsock)
newsock1150net/appletalk/ddp.creturn(atalk_create(newsock,SOCK_DGRAM));
newsock1311net/appletalk/ddp.cstatic int atalk_accept(struct socket *sock, struct socket *newsock, int flags)
newsock1313net/appletalk/ddp.cif(newsock->data)
newsock1314net/appletalk/ddp.ckfree_s(newsock->data,sizeof(atalk_socket));
newsock1073net/ax25/af_ax25.cstatic int ax25_dup(struct socket *newsock, struct socket *oldsock)
newsock1077net/ax25/af_ax25.creturn ax25_create(newsock, sk->protocol);
newsock1348net/ax25/af_ax25.cstatic int ax25_accept(struct socket *sock, struct socket *newsock, int flags)
newsock1354net/ax25/af_ax25.cif (newsock->data)
newsock1355net/ax25/af_ax25.ckfree_s(newsock->data, sizeof(struct sock));
newsock1357net/ax25/af_ax25.cnewsock->data = NULL;
newsock1394net/ax25/af_ax25.cnewsock->data = newsk;
newsock740net/ipv4/af_inet.cstatic int inet_dup(struct socket *newsock, struct socket *oldsock)
newsock742net/ipv4/af_inet.creturn(inet_create(newsock,((struct sock *)(oldsock->data))->protocol));
newsock1057net/ipv4/af_inet.cstatic int inet_accept(struct socket *sock, struct socket *newsock, int flags)
newsock1070net/ipv4/af_inet.cif (newsock->data)
newsock1072net/ipv4/af_inet.cstruct sock *sk=(struct sock *)newsock->data;
newsock1073net/ipv4/af_inet.cnewsock->data=NULL;
newsock1098net/ipv4/af_inet.cnewsock->data = (void *)sk2;
newsock1099net/ipv4/af_inet.csk2->sleep = newsock->wait;
newsock1100net/ipv4/af_inet.csk2->socket = newsock;
newsock1101net/ipv4/af_inet.cnewsock->conn = NULL;
newsock1115net/ipv4/af_inet.cnewsock->data = NULL;
newsock1126net/ipv4/af_inet.cnewsock->data = NULL;
newsock1129net/ipv4/af_inet.cnewsock->state = SS_CONNECTED;
newsock1651net/ipx/af_ipx.cstatic int ipx_dup(struct socket *newsock,struct socket *oldsock)
newsock1653net/ipx/af_ipx.creturn(ipx_create(newsock,SOCK_DGRAM));
newsock1818net/ipx/af_ipx.cstatic int ipx_accept(struct socket *sock, struct socket *newsock, int flags)
newsock1820net/ipx/af_ipx.cif(newsock->data)
newsock1821net/ipx/af_ipx.ckfree_s(newsock->data,sizeof(ipx_socket));
newsock594net/netrom/af_netrom.cstatic int nr_dup(struct socket *newsock, struct socket *oldsock)
newsock598net/netrom/af_netrom.creturn nr_create(newsock, sk->protocol);
newsock817net/netrom/af_netrom.cstatic int nr_accept(struct socket *sock, struct socket *newsock, int flags)
newsock823net/netrom/af_netrom.cif (newsock->data)
newsock824net/netrom/af_netrom.ckfree_s(newsock->data, sizeof(struct sock));
newsock826net/netrom/af_netrom.cnewsock->data = NULL;
newsock863net/netrom/af_netrom.cnewsock->data = newsk;
newsock704net/socket.cstruct socket *sock, *newsock;
newsock722net/socket.cif (!(newsock = sock_alloc())) 
newsock728net/socket.cnewsock->type = sock->type;
newsock729net/socket.cnewsock->ops = sock->ops;
newsock730net/socket.cif ((i = sock->ops->dup(newsock, sock)) < 0) 
newsock732net/socket.csock_release(newsock);
newsock736net/socket.ci = newsock->ops->accept(sock, newsock, file->f_flags);
newsock739net/socket.csock_release(newsock);
newsock743net/socket.cif ((fd = get_fd(SOCK_INODE(newsock))) < 0) 
newsock745net/socket.csock_release(newsock);
newsock751net/socket.cnewsock->ops->getname(newsock, (struct sockaddr *)address, &len, 1);
newsock340net/unix/af_unix.cstatic int unix_dup(struct socket *newsock, struct socket *oldsock)
newsock342net/unix/af_unix.creturn unix_create(newsock,0);
newsock596net/unix/af_unix.cstatic int unix_accept(struct socket *sock, struct socket *newsock, int flags)
newsock611net/unix/af_unix.cnewsk=newsock->data;