tag | line | file | source code |
socket | 33 | net/kern_sock.h | struct socket *conn; /* server socket connected to */ |
socket | 34 | net/kern_sock.h | struct socket *iconn; /* incomplete client connections */ |
socket | 35 | net/kern_sock.h | struct socket *next; |
socket | 42 | net/kern_sock.h | int (*create)(struct socket *sock, int protocol); |
socket | 43 | net/kern_sock.h | int (*dup)(struct socket *newsock, struct socket *oldsock); |
socket | 44 | net/kern_sock.h | int (*release)(struct socket *sock, struct socket *peer); |
socket | 45 | net/kern_sock.h | int (*bind)(struct socket *sock, struct sockaddr *umyaddr, |
socket | 47 | net/kern_sock.h | int (*connect)(struct socket *sock, struct sockaddr *uservaddr, |
socket | 49 | net/kern_sock.h | int (*socketpair)(struct socket *sock1, struct socket *sock2); |
socket | 50 | net/kern_sock.h | int (*accept)(struct socket *sock, struct socket *newsock); |
socket | 51 | net/kern_sock.h | int (*getname)(struct socket *sock, struct sockaddr *uaddr, |
socket | 53 | net/kern_sock.h | int (*read)(struct socket *sock, char *ubuf, int size, int nonblock); |
socket | 54 | net/kern_sock.h | int (*write)(struct socket *sock, char *ubuf, int size, int nonblock); |
socket | 55 | net/kern_sock.h | int (*select)(struct socket *sock, int sel_type, select_table * wait); |
socket | 56 | net/kern_sock.h | int (*ioctl)(struct socket *sock, unsigned int cmd, unsigned long arg); |
socket | 59 | net/kern_sock.h | extern int sock_awaitconn(struct socket *mysock, struct socket *servsock); |
socket | 66 | net/socket.c | static struct socket sockets[NSOCKETS]; |
socket | 115 | net/socket.c | static inline struct socket * |
socket | 118 | net/socket.c | struct socket *sock; |
socket | 126 | net/socket.c | static inline struct socket * |
socket | 138 | net/socket.c | static struct socket * |
socket | 141 | net/socket.c | struct socket *sock; |
socket | 188 | net/socket.c | sock_release_peer(struct socket *peer) |
socket | 195 | net/socket.c | sock_release(struct socket *sock) |
socket | 198 | net/socket.c | struct socket *peersock, *nextsock; |
socket | 234 | net/socket.c | struct socket *sock; |
socket | 249 | net/socket.c | struct socket *sock; |
socket | 273 | net/socket.c | struct socket *sock; |
socket | 296 | net/socket.c | struct socket *sock; |
socket | 333 | net/socket.c | struct socket *sock; |
socket | 350 | net/socket.c | sock_awaitconn(struct socket *mysock, struct socket *servsock) |
socket | 352 | net/socket.c | struct socket *last; |
socket | 417 | net/socket.c | struct socket *sock; |
socket | 475 | net/socket.c | struct socket *sock1, *sock2; |
socket | 524 | net/socket.c | struct socket *sock; |
socket | 545 | net/socket.c | struct socket *sock; |
socket | 570 | net/socket.c | struct socket *sock, *clientsock, *newsock; |
socket | 642 | net/socket.c | struct socket *sock; |
socket | 662 | net/socket.c | struct socket *sock; |
socket | 673 | net/socket.c | struct socket *sock; |
socket | 746 | net/socket.c | struct socket *sock; |
socket | 19 | net/unix.c | struct socket *socket; /* socket we're bound to */ |
socket | 43 | net/unix.c | static int unix_proto_create(struct socket *sock, int protocol); |
socket | 44 | net/unix.c | static int unix_proto_dup(struct socket *newsock, struct socket *oldsock); |
socket | 45 | net/unix.c | static int unix_proto_release(struct socket *sock, struct socket *peer); |
socket | 46 | net/unix.c | static int unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr, |
socket | 48 | net/unix.c | static int unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr, |
socket | 50 | net/unix.c | static int unix_proto_socketpair(struct socket *sock1, struct socket *sock2); |
socket | 51 | net/unix.c | static int unix_proto_accept(struct socket *sock, struct socket *newsock); |
socket | 52 | net/unix.c | static int unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr, |
socket | 54 | net/unix.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
socket | 56 | net/unix.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
socket | 58 | net/unix.c | static int unix_proto_select(struct socket *sock, int sel_type, select_table * wait); |
socket | 59 | net/unix.c | static int unix_proto_ioctl(struct socket *sock, unsigned int cmd, |
socket | 104 | net/unix.c | if (upd->refcnt && upd->socket && |
socket | 122 | net/unix.c | upd->socket = NULL; |
socket | 161 | net/unix.c | unix_proto_create(struct socket *sock, int protocol) |
socket | 180 | net/unix.c | upd->socket = sock; |
socket | 187 | net/unix.c | unix_proto_dup(struct socket *newsock, struct socket *oldsock) |
socket | 195 | net/unix.c | unix_proto_release(struct socket *sock, struct socket *peer) |
socket | 203 | net/unix.c | if (upd->socket != sock) { |
socket | 214 | net/unix.c | upd->socket = NULL; |
socket | 231 | net/unix.c | unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr, |
socket | 284 | net/unix.c | unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr, |
socket | 309 | net/unix.c | if ((i = sock_awaitconn(sock, serv_upd->socket)) < 0) { |
socket | 325 | net/unix.c | unix_proto_socketpair(struct socket *sock1, struct socket *sock2) |
socket | 340 | net/unix.c | unix_proto_accept(struct socket *sock, struct socket *newsock) |
socket | 353 | net/unix.c | unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr, |
socket | 387 | net/unix.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
socket | 451 | net/unix.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
socket | 524 | net/unix.c | unix_proto_select(struct socket *sock, int sel_type, select_table * wait) |
socket | 560 | net/unix.c | unix_proto_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |