tag | line | file | source code |
sock1 | 94 | include/linux/net.h | int (*socketpair) (struct socket *sock1, struct socket *sock2); |
sock1 | 916 | net/inet/af_inet.c | static int inet_socketpair(struct socket *sock1, struct socket *sock2) |
sock1 | 756 | net/inet/ipx.c | static int ipx_socketpair(struct socket *sock1, struct socket *sock2) |
sock1 | 635 | net/socket.c | struct socket *sock1, *sock2; |
sock1 | 645 | net/socket.c | sock1 = sockfd_lookup(fd1, NULL); |
sock1 | 646 | net/socket.c | if (!sock1->ops->socketpair) |
sock1 | 663 | net/socket.c | if ((i = sock1->ops->socketpair(sock1, sock2)) < 0) |
sock1 | 670 | net/socket.c | sock1->conn = sock2; |
sock1 | 671 | net/socket.c | sock2->conn = sock1; |
sock1 | 672 | net/socket.c | sock1->state = SS_CONNECTED; |
sock1 | 68 | net/unix/sock.c | static int unix_proto_socketpair(struct socket *sock1, struct socket *sock2); |
sock1 | 520 | net/unix/sock.c | static int unix_proto_socketpair(struct socket *sock1, struct socket *sock2) |
sock1 | 522 | net/unix/sock.c | struct unix_proto_data *upd1 = UN_DATA(sock1), *upd2 = UN_DATA(sock2); |