taglinefilesource code
socket20fs/nfs/sock.cextern struct socket *socki_lookup(struct inode *inode);
socket38fs/nfs/sock.cstruct socket *sock;
socket190include/linux/fs.hstruct socket * i_socket;
socket75include/linux/net.hstruct socket    *conn;    /* server socket connected to  */
socket76include/linux/net.hstruct socket    *iconn;    /* incomplete client conn.s  */
socket77include/linux/net.hstruct socket    *next;
socket87include/linux/net.hint  (*create)  (struct socket *sock, int protocol);
socket88include/linux/net.hint  (*dup)    (struct socket *newsock, struct socket *oldsock);
socket89include/linux/net.hint  (*release)  (struct socket *sock, struct socket *peer);
socket90include/linux/net.hint  (*bind)    (struct socket *sock, struct sockaddr *umyaddr,
socket92include/linux/net.hint  (*connect)  (struct socket *sock, struct sockaddr *uservaddr,
socket94include/linux/net.hint  (*socketpair)  (struct socket *sock1, struct socket *sock2);
socket95include/linux/net.hint  (*accept)  (struct socket *sock, struct socket *newsock,
socket97include/linux/net.hint  (*getname)  (struct socket *sock, struct sockaddr *uaddr,
socket99include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
socket101include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
socket103include/linux/net.hint  (*select)  (struct socket *sock, int sel_type,
socket105include/linux/net.hint  (*ioctl)  (struct socket *sock, unsigned int cmd,
socket107include/linux/net.hint  (*listen)  (struct socket *sock, int len);
socket108include/linux/net.hint  (*send)    (struct socket *sock, void *buff, int len, int nonblock,
socket110include/linux/net.hint  (*recv)    (struct socket *sock, void *buff, int len, int nonblock,
socket112include/linux/net.hint  (*sendto)  (struct socket *sock, void *buff, int len, int nonblock,
socket114include/linux/net.hint  (*recvfrom)  (struct socket *sock, void *buff, int len, int nonblock,
socket116include/linux/net.hint  (*shutdown)  (struct socket *sock, int flags);
socket117include/linux/net.hint  (*setsockopt)  (struct socket *sock, int level, int optname,
socket119include/linux/net.hint  (*getsockopt)  (struct socket *sock, int level, int optname,
socket121include/linux/net.hint  (*fcntl)  (struct socket *sock, unsigned int cmd,
socket130include/linux/net.hextern int  sock_awaitconn(struct socket *mysock, struct socket *servsock);
socket341net/inet/af_inet.cstatic int inet_fcntl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket370net/inet/af_inet.cstatic int inet_setsockopt(struct socket *sock, int level, int optname,
socket384net/inet/af_inet.cstatic int inet_getsockopt(struct socket *sock, int level, int optname,
socket411net/inet/af_inet.cstatic int inet_listen(struct socket *sock, int backlog)
socket453net/inet/af_inet.cstatic int inet_create(struct socket *sock, int protocol)
socket532net/inet/af_inet.csk->socket = sock;
socket658net/inet/af_inet.cstatic int inet_dup(struct socket *newsock, struct socket *oldsock)
socket670net/inet/af_inet.cstatic int inet_release(struct socket *sock, struct socket *peer)
socket728net/inet/af_inet.cstatic int inet_bind(struct socket *sock, struct sockaddr *uaddr,
socket829net/inet/af_inet.cstatic int inet_connect(struct socket *sock, struct sockaddr * uaddr,
socket896net/inet/af_inet.cstatic int inet_socketpair(struct socket *sock1, struct socket *sock2)
socket906net/inet/af_inet.cstatic int inet_accept(struct socket *sock, struct socket *newsock, int flags)
socket985net/inet/af_inet.cstatic int inet_getname(struct socket *sock, struct sockaddr *uaddr,
socket1037net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
socket1060net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
socket1065net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
socket1090net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
socket1095net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
socket1126net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
socket1152net/inet/af_inet.cstatic int inet_shutdown(struct socket *sock, int how)
socket1176net/inet/af_inet.cstatic int inet_select(struct socket *sock, int sel_type, select_table *wait )
socket1196net/inet/af_inet.cstatic int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket164net/inet/ipx.clen += sprintf (buffer+len,"%02X %d\n", s->state, SOCK_INODE(s->socket)->i_uid);
socket463net/inet/ipx.cstatic int ipx_fcntl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket482net/inet/ipx.cstatic int ipx_setsockopt(struct socket *sock, int level, int optname,
socket526net/inet/ipx.cstatic int ipx_getsockopt(struct socket *sock, int level, int optname,
socket569net/inet/ipx.cstatic int ipx_listen(struct socket *sock, int backlog)
socket586net/inet/ipx.cstatic int ipx_create(struct socket *sock, int protocol)
socket617net/inet/ipx.csk->socket=sock;
socket641net/inet/ipx.cstatic int ipx_dup(struct socket *newsock,struct socket *oldsock)
socket646net/inet/ipx.cstatic int ipx_release(struct socket *sock, struct socket *peer)
socket676net/inet/ipx.cstatic int ipx_bind(struct socket *sock, struct sockaddr *uaddr,int addr_len)
socket750net/inet/ipx.cstatic int ipx_connect(struct socket *sock, struct sockaddr *uaddr,
socket787net/inet/ipx.cstatic int ipx_socketpair(struct socket *sock1, struct socket *sock2)
socket792net/inet/ipx.cstatic int ipx_accept(struct socket *sock, struct socket *newsock, int flags)
socket799net/inet/ipx.cstatic int ipx_getname(struct socket *sock, struct sockaddr *uaddr,
socket1000net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
socket1173net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
socket1178net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
socket1240net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
socket1246net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
socket1255net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
socket1261net/inet/ipx.cstatic int ipx_shutdown(struct socket *sk,int how)
socket1266net/inet/ipx.cstatic int ipx_select(struct socket *sock , int sel_type, select_table *wait)
socket1273net/inet/ipx.cstatic int ipx_ioctl(struct socket *sock,unsigned int cmd, unsigned long arg)
socket96net/inet/proc.cSOCK_INODE(sp->socket)->i_uid);
socket166net/inet/sock.hstruct socket      *socket;
socket74net/socket.cstatic struct socket sockets[NSOCKETS];
socket121net/socket.cstruct socket *
socket124net/socket.cstruct socket *sock;
socket140net/socket.cstatic inline struct socket *
socket151net/socket.cstatic struct socket *
socket154net/socket.cstruct socket *sock;
socket200net/socket.csock_release_peer(struct socket *peer)
socket208net/socket.csock_release(struct socket *sock)
socket212net/socket.cstruct socket *peersock, *nextsock;
socket249net/socket.cstruct socket *sock;
socket263net/socket.cstruct socket *sock;
socket286net/socket.cstruct socket *sock;
socket299net/socket.cstruct socket *sock;
socket316net/socket.cstruct socket *sock;
socket329net/socket.csock_awaitconn(struct socket *mysock, struct socket *servsock)
socket331net/socket.cstruct socket *last;
socket390net/socket.cstruct socket *sock;
socket442net/socket.cstruct socket *sock1, *sock2;
socket489net/socket.cstruct socket *sock;
socket510net/socket.cstruct socket *sock;
socket533net/socket.cstruct socket *sock, *newsock;
socket580net/socket.cstruct socket *sock;
socket621net/socket.cstruct socket *sock;
socket633net/socket.cstruct socket *sock;
socket645net/socket.cstruct socket *sock;
socket660net/socket.cstruct socket *sock;
socket675net/socket.cstruct socket *sock;
socket690net/socket.cstruct socket *sock;
socket705net/socket.cstruct socket *sock;
socket719net/socket.cstruct socket *sock;
socket734net/socket.cstruct socket *sock;
socket749net/socket.cstruct socket *sock;
socket930net/socket.cstruct socket *sock;
socket56net/unix/proc.cif (unix_datas[i].refcnt>0 && unix_datas[i].socket!=NULL)
socket59net/unix/proc.cs_type=unix_datas[i].socket->type;
socket60net/unix/proc.cs_flags=unix_datas[i].socket->flags;
socket61net/unix/proc.cs_state=unix_datas[i].socket->state;
socket56net/unix/sock.cstatic int unix_proto_create(struct socket *sock, int protocol);
socket57net/unix/sock.cstatic int unix_proto_dup(struct socket *newsock, struct socket *oldsock);
socket58net/unix/sock.cstatic int unix_proto_release(struct socket *sock, struct socket *peer);
socket59net/unix/sock.cstatic int unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket61net/unix/sock.cstatic int unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket63net/unix/sock.cstatic int unix_proto_socketpair(struct socket *sock1, struct socket *sock2);
socket64net/unix/sock.cstatic int unix_proto_accept(struct socket *sock, struct socket *newsock, 
socket66net/unix/sock.cstatic int unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket68net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
socket70net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
socket72net/unix/sock.cstatic int unix_proto_select(struct socket *sock, int sel_type, select_table * wait);
socket73net/unix/sock.cstatic int unix_proto_ioctl(struct socket *sock, unsigned int cmd,
socket75net/unix/sock.cstatic int unix_proto_listen(struct socket *sock, int backlog);
socket76net/unix/sock.cstatic int unix_proto_send(struct socket *sock, void *buff, int len,
socket78net/unix/sock.cstatic int unix_proto_recv(struct socket *sock, void *buff, int len,
socket80net/unix/sock.cstatic int unix_proto_sendto(struct socket *sock, void *buff, int len,
socket83net/unix/sock.cstatic int unix_proto_recvfrom(struct socket *sock, void *buff, int len,
socket87net/unix/sock.cstatic int unix_proto_shutdown(struct socket *sock, int how);
socket89net/unix/sock.cstatic int unix_proto_setsockopt(struct socket *sock, int level, int optname,
socket91net/unix/sock.cstatic int unix_proto_getsockopt(struct socket *sock, int level, int optname,
socket129net/unix/sock.cunix_proto_listen(struct socket *sock, int backlog)
socket136net/unix/sock.cunix_proto_setsockopt(struct socket *sock, int level, int optname,
socket144net/unix/sock.cunix_proto_getsockopt(struct socket *sock, int level, int optname,
socket151net/unix/sock.cunix_proto_sendto(struct socket *sock, void *buff, int len, int nonblock, 
socket158net/unix/sock.cunix_proto_recvfrom(struct socket *sock, void *buff, int len, int nonblock, 
socket166net/unix/sock.cunix_proto_shutdown(struct socket *sock, int how)
socket174net/unix/sock.cunix_proto_send(struct socket *sock, void *buff, int len, int nonblock,
socket184net/unix/sock.cunix_proto_recv(struct socket *sock, void *buff, int len, int nonblock,
socket199net/unix/sock.cif (upd->refcnt > 0 && upd->socket &&
socket200net/unix/sock.cupd->socket->state == SS_UNCONNECTED &&
socket218net/unix/sock.cupd->socket = NULL;
socket265net/unix/sock.cunix_proto_create(struct socket *sock, int protocol)
socket282net/unix/sock.cupd->socket = sock;
socket290net/unix/sock.cunix_proto_dup(struct socket *newsock, struct socket *oldsock)
socket299net/unix/sock.cunix_proto_release(struct socket *sock, struct socket *peer)
socket304net/unix/sock.cif (upd->socket != sock) {
socket313net/unix/sock.cupd->socket = NULL;
socket330net/unix/sock.cunix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket379net/unix/sock.cunix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket427net/unix/sock.cif ((i = sock_awaitconn(sock, serv_upd->socket)) < 0) {
socket445net/unix/sock.cunix_proto_socketpair(struct socket *sock1, struct socket *sock2)
socket459net/unix/sock.cunix_proto_accept(struct socket *sock, struct socket *newsock, int flags)
socket461net/unix/sock.cstruct socket *clientsock;
socket496net/unix/sock.cunix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket529net/unix/sock.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
socket589net/unix/sock.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
socket664net/unix/sock.cunix_proto_select(struct socket *sock, int sel_type, select_table * wait)
socket705net/unix/sock.cunix_proto_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket34net/unix/unix.hstruct socket  *socket;  /* socket we're bound to  */