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