tag | line | file | source code |
sock2 | 96 | include/linux/net.h | int (*socketpair) (struct socket *sock1, struct socket *sock2); |
sock2 | 1095 | net/inet/sock.c | inet_socketpair(struct socket *sock1, struct socket *sock2) |
sock2 | 476 | net/socket.c | struct socket *sock1, *sock2; |
sock2 | 499 | net/socket.c | sock2 = sockfd_lookup(fd2, NULL); |
sock2 | 500 | net/socket.c | if ((i = sock1->ops->socketpair(sock1, sock2)) < 0) { |
sock2 | 505 | net/socket.c | sock1->conn = sock2; |
sock2 | 506 | net/socket.c | sock2->conn = sock1; |
sock2 | 508 | net/socket.c | sock2->state = SS_CONNECTED; |
sock2 | 64 | net/unix/sock.c | static int unix_proto_socketpair(struct socket *sock1, struct socket *sock2); |
sock2 | 485 | net/unix/sock.c | unix_proto_socketpair(struct socket *sock1, struct socket *sock2) |
sock2 | 487 | net/unix/sock.c | struct unix_proto_data *upd1 = UN_DATA(sock1), *upd2 = UN_DATA(sock2); |