tag | line | file | source code |
how | 797 | net/socket.c | sys_shutdown( int fd, int how) |
how | 802 | net/socket.c | PRINTK(("sys_shutdown (fd = %d, how = %d)\n",fd, how)); |
how | 811 | net/socket.c | return (sock->ops->shutdown (sock, how)); |
how | 158 | net/tcp/sock.c | static int ip_proto_shutdown (struct socket *sock, int how); |
how | 1588 | net/tcp/sock.c | ip_proto_shutdown (struct socket *sock, int how) |
how | 1593 | net/tcp/sock.c | how++; /* maps 0->1 has the advantage of making bit 1 rcvs and |
how | 1596 | net/tcp/sock.c | if (how & ~SHUTDOWN_MASK) return (-EINVAL); |
how | 1607 | net/tcp/sock.c | sk->shutdown |= how; |
how | 1609 | net/tcp/sock.c | sk->prot->shutdown (sk, how); |
how | 146 | net/tcp/sock.h | void (*shutdown) (volatile struct sock *sk, int how); |
how | 1424 | net/tcp/tcp.c | tcp_shutdown (volatile struct sock *sk, int how) |
how | 1443 | net/tcp/tcp.c | if (!(how & SEND_SHUTDOWN)) return; |
how | 75 | net/unix.c | static int unix_proto_shutdown (struct socket *sock, int how); |
how | 170 | net/unix.c | unix_proto_shutdown (struct socket *sock, int how) |