taglinefilesource code
socket33net/kern_sock.hstruct socket *conn;    /* server socket connected to */
socket34net/kern_sock.hstruct socket *iconn;    /* incomplete client connections */
socket35net/kern_sock.hstruct socket *next;
socket42net/kern_sock.hint (*create)(struct socket *sock, int protocol);
socket43net/kern_sock.hint (*dup)(struct socket *newsock, struct socket *oldsock);
socket44net/kern_sock.hint (*release)(struct socket *sock, struct socket *peer);
socket45net/kern_sock.hint (*bind)(struct socket *sock, struct sockaddr *umyaddr,
socket47net/kern_sock.hint (*connect)(struct socket *sock, struct sockaddr *uservaddr,
socket49net/kern_sock.hint (*socketpair)(struct socket *sock1, struct socket *sock2);
socket50net/kern_sock.hint (*accept)(struct socket *sock, struct socket *newsock, int flags);
socket51net/kern_sock.hint (*getname)(struct socket *sock, struct sockaddr *uaddr,
socket53net/kern_sock.hint (*read)(struct socket *sock, char *ubuf, int size, int nonblock);
socket54net/kern_sock.hint (*write)(struct socket *sock, char *ubuf, int size, int nonblock);
socket55net/kern_sock.hint (*select)(struct socket *sock, int sel_type, select_table * wait);
socket56net/kern_sock.hint (*ioctl)(struct socket *sock, unsigned int cmd, unsigned long arg);
socket57net/kern_sock.hint (*listen)(struct socket *sock, int len);
socket58net/kern_sock.hint (*send)(struct socket *sock, void *buff, int len, int nonblock,
socket60net/kern_sock.hint (*recv)(struct socket *sock, void *buff, int len, int nonblock,
socket62net/kern_sock.hint (*sendto)(struct socket *sock, void *buff, int len, int nonblock,
socket64net/kern_sock.hint (*recvfrom)(struct socket *sock, void *buff, int len, int nonblock,
socket66net/kern_sock.hint (*shutdown)(struct socket *sock, int flags);
socket67net/kern_sock.hint (*setsockopt)(struct socket *sock, int level, int optname,
socket69net/kern_sock.hint (*getsockopt)(struct socket *sock, int level, int optname,
socket71net/kern_sock.hint (*fcntl) (struct socket *sock, unsigned int cmd,
socket75net/kern_sock.hextern int sock_awaitconn(struct socket *mysock, struct socket *servsock);
socket73net/socket.cstatic struct socket sockets[NSOCKETS];
socket122net/socket.cstatic inline struct socket *
socket125net/socket.cstruct socket *sock;
socket133net/socket.cstatic inline struct socket *
socket145net/socket.cstatic struct socket *
socket148net/socket.cstruct socket *sock;
socket195net/socket.csock_release_peer(struct socket *peer)
socket202net/socket.csock_release(struct socket *sock)
socket205net/socket.cstruct socket *peersock, *nextsock;
socket241net/socket.cstruct socket *sock;
socket256net/socket.cstruct socket *sock;
socket280net/socket.cstruct socket *sock;
socket293net/socket.cstruct socket *sock;
socket313net/socket.cstruct socket *sock;
socket330net/socket.csock_awaitconn(struct socket *mysock, struct socket *servsock)
socket332net/socket.cstruct socket *last;
socket397net/socket.cstruct socket *sock;
socket455net/socket.cstruct socket *sock1, *sock2;
socket504net/socket.cstruct socket *sock;
socket525net/socket.cstruct socket *sock;
socket552net/socket.cstruct socket *sock, *newsock;
socket606net/socket.cstruct socket *sock;
socket628net/socket.cstruct socket *sock;
socket639net/socket.cstruct socket *sock;
socket653net/socket.cstruct socket *sock;
socket674net/socket.cstruct socket *sock;
socket696net/socket.cstruct socket *sock;
socket717net/socket.cstruct socket *sock;
socket739net/socket.cstruct socket *sock;
socket759net/socket.cstruct socket *sock;
socket780net/socket.cstruct socket *sock;
socket799net/socket.cstruct socket *sock;
socket929net/socket.cstruct socket *sock;
socket19net/unix.cstruct socket *socket;    /* socket we're bound to */
socket43net/unix.cstatic int unix_proto_create(struct socket *sock, int protocol);
socket44net/unix.cstatic int unix_proto_dup(struct socket *newsock, struct socket *oldsock);
socket45net/unix.cstatic int unix_proto_release(struct socket *sock, struct socket *peer);
socket46net/unix.cstatic int unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket48net/unix.cstatic int unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket50net/unix.cstatic int unix_proto_socketpair(struct socket *sock1, struct socket *sock2);
socket51net/unix.cstatic int unix_proto_accept(struct socket *sock, struct socket *newsock, 
socket53net/unix.cstatic int unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket55net/unix.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
socket57net/unix.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
socket59net/unix.cstatic int unix_proto_select(struct socket *sock, int sel_type, select_table * wait);
socket60net/unix.cstatic int unix_proto_ioctl(struct socket *sock, unsigned int cmd,
socket62net/unix.cstatic int unix_proto_listen(struct socket *sock, int backlog);
socket63net/unix.cstatic int unix_proto_send (struct socket *sock, void *buff, int len,
socket65net/unix.cstatic int unix_proto_recv (struct socket *sock, void *buff, int len,
socket67net/unix.cstatic int unix_proto_sendto (struct socket *sock, void *buff, int len,
socket70net/unix.cstatic int unix_proto_recvfrom (struct socket *sock, void *buff, int len,
socket74net/unix.cstatic int unix_proto_shutdown (struct socket *sock, int how);
socket76net/unix.cstatic int unix_proto_setsockopt (struct socket *sock, int level, int optname,
socket78net/unix.cstatic int unix_proto_getsockopt (struct socket *sock, int level, int optname,
socket128net/unix.cunix_proto_listen (struct socket *sock, int backlog)
socket134net/unix.cunix_proto_setsockopt(struct socket *sock, int level, int optname,
socket141net/unix.cunix_proto_getsockopt(struct socket *sock, int level, int optname,
socket148net/unix.cunix_proto_sendto(struct socket *sock, void *buff, int len, int nonblock, 
socket155net/unix.cunix_proto_recvfrom(struct socket *sock, void *buff, int len, int nonblock, 
socket162net/unix.cunix_proto_shutdown (struct socket *sock, int how)
socket168net/unix.cunix_proto_send(struct socket *sock, void *buff, int len, int nonblock,
socket178net/unix.cunix_proto_recv(struct socket *sock, void *buff, int len, int nonblock,
socket194net/unix.cif (upd->refcnt && upd->socket &&
socket212net/unix.cupd->socket = NULL;
socket251net/unix.cunix_proto_create(struct socket *sock, int protocol)
socket270net/unix.cupd->socket = sock;
socket277net/unix.cunix_proto_dup(struct socket *newsock, struct socket *oldsock)
socket285net/unix.cunix_proto_release(struct socket *sock, struct socket *peer)
socket293net/unix.cif (upd->socket != sock) {
socket304net/unix.cupd->socket = NULL;
socket321net/unix.cunix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket374net/unix.cunix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket399net/unix.cif ((i = sock_awaitconn(sock, serv_upd->socket)) < 0) {
socket415net/unix.cunix_proto_socketpair(struct socket *sock1, struct socket *sock2)
socket430net/unix.cunix_proto_accept(struct socket *sock, struct socket *newsock, int flags)
socket432net/unix.cstruct socket *clientsock;
socket471net/unix.cunix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket505net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
socket569net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
socket642net/unix.cunix_proto_select(struct socket *sock, int sel_type, select_table * wait)
socket695net/unix.cunix_proto_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)