taglinefilesource code
socket37fs/nfs/sock.cextern struct socket *socki_lookup(struct inode *inode);
socket55fs/nfs/sock.cstruct socket *sock;
socket228include/linux/fs.hstruct socket * i_socket;
socket77include/linux/net.hstruct socket    *conn;    /* server socket connected to  */
socket78include/linux/net.hstruct socket    *iconn;    /* incomplete client conn.s  */
socket79include/linux/net.hstruct socket    *next;
socket90include/linux/net.hint  (*create)  (struct socket *sock, int protocol);
socket91include/linux/net.hint  (*dup)    (struct socket *newsock, struct socket *oldsock);
socket92include/linux/net.hint  (*release)  (struct socket *sock, struct socket *peer);
socket93include/linux/net.hint  (*bind)    (struct socket *sock, struct sockaddr *umyaddr,
socket95include/linux/net.hint  (*connect)  (struct socket *sock, struct sockaddr *uservaddr,
socket97include/linux/net.hint  (*socketpair)  (struct socket *sock1, struct socket *sock2);
socket98include/linux/net.hint  (*accept)  (struct socket *sock, struct socket *newsock,
socket100include/linux/net.hint  (*getname)  (struct socket *sock, struct sockaddr *uaddr,
socket102include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
socket104include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
socket106include/linux/net.hint  (*select)  (struct socket *sock, int sel_type,
socket108include/linux/net.hint  (*ioctl)  (struct socket *sock, unsigned int cmd,
socket110include/linux/net.hint  (*listen)  (struct socket *sock, int len);
socket111include/linux/net.hint  (*send)    (struct socket *sock, void *buff, int len, int nonblock,
socket113include/linux/net.hint  (*recv)    (struct socket *sock, void *buff, int len, int nonblock,
socket115include/linux/net.hint  (*sendto)  (struct socket *sock, void *buff, int len, int nonblock,
socket117include/linux/net.hint  (*recvfrom)  (struct socket *sock, void *buff, int len, int nonblock,
socket119include/linux/net.hint  (*shutdown)  (struct socket *sock, int flags);
socket120include/linux/net.hint  (*setsockopt)  (struct socket *sock, int level, int optname,
socket122include/linux/net.hint  (*getsockopt)  (struct socket *sock, int level, int optname,
socket124include/linux/net.hint  (*fcntl)  (struct socket *sock, unsigned int cmd,
socket133include/linux/net.hextern int  sock_awaitconn(struct socket *mysock, struct socket *servsock, int flags);
socket134include/linux/net.hextern int  sock_wake_async(struct socket *sock, int how);
socket367net/inet/af_inet.cstatic int inet_fcntl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket396net/inet/af_inet.cstatic int inet_setsockopt(struct socket *sock, int level, int optname,
socket412net/inet/af_inet.cstatic int inet_getsockopt(struct socket *sock, int level, int optname,
socket446net/inet/af_inet.cstatic int inet_listen(struct socket *sock, int backlog)
socket486net/inet/af_inet.csock_wake_async(sk->socket, 1);
socket495net/inet/af_inet.csock_wake_async(sk->socket, 2);
socket506net/inet/af_inet.cstatic int inet_create(struct socket *sock, int protocol)
socket585net/inet/af_inet.csk->socket = sock;
socket719net/inet/af_inet.cstatic int inet_dup(struct socket *newsock, struct socket *oldsock)
socket731net/inet/af_inet.cstatic int inet_release(struct socket *sock, struct socket *peer)
socket782net/inet/af_inet.csk->socket = NULL;
socket791net/inet/af_inet.cstatic int inet_bind(struct socket *sock, struct sockaddr *uaddr,
socket889net/inet/af_inet.cstatic int inet_connect(struct socket *sock, struct sockaddr * uaddr,
socket966net/inet/af_inet.cstatic int inet_socketpair(struct socket *sock1, struct socket *sock2)
socket976net/inet/af_inet.cstatic int inet_accept(struct socket *sock, struct socket *newsock, int flags)
socket1019net/inet/af_inet.csk2->socket = newsock;
socket1033net/inet/af_inet.csk2->socket=NULL;
socket1058net/inet/af_inet.cstatic int inet_getname(struct socket *sock, struct sockaddr *uaddr,
socket1090net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
socket1107net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
socket1114net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
socket1126net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
socket1143net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
socket1148net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
socket1169net/inet/af_inet.cstatic int inet_shutdown(struct socket *sock, int how)
socket1193net/inet/af_inet.cstatic int inet_select(struct socket *sock, int sel_type, select_table *wait )
socket1213net/inet/af_inet.cstatic int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket168net/inet/ipx.clen += sprintf (buffer+len,"%02X %d\n", s->state, SOCK_INODE(s->socket)->i_uid);
socket471net/inet/ipx.cstatic int ipx_fcntl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket481net/inet/ipx.cstatic int ipx_setsockopt(struct socket *sock, int level, int optname, char *optval, int optlen)
socket519net/inet/ipx.cstatic int ipx_getsockopt(struct socket *sock, int level, int optname,
socket557net/inet/ipx.cstatic int ipx_listen(struct socket *sock, int backlog)
socket573net/inet/ipx.csock_wake_async(sk->socket, 1);
socket577net/inet/ipx.cstatic int ipx_create(struct socket *sock, int protocol)
socket608net/inet/ipx.csk->socket=sock;
socket632net/inet/ipx.cstatic int ipx_dup(struct socket *newsock,struct socket *oldsock)
socket637net/inet/ipx.cstatic int ipx_release(struct socket *sock, struct socket *peer)
socket663net/inet/ipx.cstatic int ipx_bind(struct socket *sock, struct sockaddr *uaddr,int addr_len)
socket732net/inet/ipx.cstatic int ipx_connect(struct socket *sock, struct sockaddr *uaddr,
socket768net/inet/ipx.cstatic int ipx_socketpair(struct socket *sock1, struct socket *sock2)
socket773net/inet/ipx.cstatic int ipx_accept(struct socket *sock, struct socket *newsock, int flags)
socket780net/inet/ipx.cstatic int ipx_getname(struct socket *sock, struct sockaddr *uaddr,
socket962net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
socket1138net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
socket1143net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
socket1185net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
socket1191net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
socket1200net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
socket1206net/inet/ipx.cstatic int ipx_shutdown(struct socket *sk,int how)
socket1211net/inet/ipx.cstatic int ipx_select(struct socket *sock , int sel_type, select_table *wait)
socket1218net/inet/ipx.cstatic int ipx_ioctl(struct socket *sock,unsigned int cmd, unsigned long arg)
socket98net/inet/proc.csp->socket?SOCK_INODE(sp->socket)->i_uid:0,
socket463net/inet/sock.csk->socket->flags |= SO_NOSPACE;
socket485net/inet/sock.csk->socket->flags &= ~SO_NOSPACE;
socket180net/inet/sock.hstruct socket      *socket;
socket1481net/inet/tcp.csk->socket->flags |= SO_NOSPACE;
socket1504net/inet/tcp.csk->socket->flags &= ~SO_NOSPACE;
socket1930net/inet/tcp.csk->socket->flags |= SO_WAITDATA;
socket1932net/inet/tcp.csk->socket->flags &= ~SO_WAITDATA;
socket2484net/inet/tcp.cnewsk->socket = NULL;
socket3450net/inet/tcp.csock_wake_async(sk->socket, 1);
socket4473net/inet/tcp.csock_wake_async(sk->socket, 0);
socket95net/socket.cstatic struct socket *sockets = NULL;
socket207net/socket.cstruct socket *socki_lookup(struct inode *inode)
socket209net/socket.cstruct socket *sock;
socket230net/socket.cstatic inline struct socket *sockfd_lookup(int fd, struct file **pfile)
socket247net/socket.cstatic struct socket *sock_alloc(int wait)
socket249net/socket.cstruct socket *sock;
socket315net/socket.cstatic inline void sock_release_peer(struct socket *peer)
socket323net/socket.cstatic void sock_release(struct socket *sock)
socket327net/socket.cstruct socket *peersock, *nextsock;
socket383net/socket.cstruct socket *sock;
socket410net/socket.cstruct socket *sock;
socket450net/socket.cstruct socket *sock;
socket463net/socket.cstruct socket *sock;
socket483net/socket.cstruct socket *sock;
socket508net/socket.cstruct socket *sock;
socket554net/socket.cint sock_wake_async(struct socket *sock, int how)
socket583net/socket.cint sock_awaitconn(struct socket *mysock, struct socket *servsock, int flags)
socket585net/socket.cstruct socket *last;
socket664net/socket.cstruct socket *sock;
socket729net/socket.cstruct socket *sock1, *sock2;
socket793net/socket.cstruct socket *sock;
socket823net/socket.cstruct socket *sock;
socket853net/socket.cstruct socket *sock, *newsock;
socket913net/socket.cstruct socket *sock;
socket964net/socket.cstruct socket *sock;
socket989net/socket.cstruct socket *sock;
socket1014net/socket.cstruct socket *sock;
socket1040net/socket.cstruct socket *sock;
socket1074net/socket.cstruct socket *sock;
socket1104net/socket.cstruct socket *sock;
socket1140net/socket.cstruct socket *sock;
socket1158net/socket.cstruct socket *sock;
socket1178net/socket.cstruct socket *sock;
socket1196net/socket.cstruct socket *sock;
socket1409net/socket.cstruct socket *sock;
socket1417net/socket.csockets = (struct socket *)kmalloc(sizeof(struct socket) * nsockets, GFP_KERNEL);
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;
socket60net/unix/sock.cstatic int unix_proto_create(struct socket *sock, int protocol);
socket61net/unix/sock.cstatic int unix_proto_dup(struct socket *newsock, struct socket *oldsock);
socket62net/unix/sock.cstatic int unix_proto_release(struct socket *sock, struct socket *peer);
socket63net/unix/sock.cstatic int unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket65net/unix/sock.cstatic int unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket67net/unix/sock.cstatic int unix_proto_socketpair(struct socket *sock1, struct socket *sock2);
socket68net/unix/sock.cstatic int unix_proto_accept(struct socket *sock, struct socket *newsock, 
socket70net/unix/sock.cstatic int unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket72net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
socket74net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
socket76net/unix/sock.cstatic int unix_proto_select(struct socket *sock, int sel_type, select_table * wait);
socket77net/unix/sock.cstatic int unix_proto_ioctl(struct socket *sock, unsigned int cmd,
socket79net/unix/sock.cstatic int unix_proto_listen(struct socket *sock, int backlog);
socket80net/unix/sock.cstatic int unix_proto_send(struct socket *sock, void *buff, int len,
socket82net/unix/sock.cstatic int unix_proto_recv(struct socket *sock, void *buff, int len,
socket84net/unix/sock.cstatic int unix_proto_sendto(struct socket *sock, void *buff, int len,
socket87net/unix/sock.cstatic int unix_proto_recvfrom(struct socket *sock, void *buff, int len,
socket91net/unix/sock.cstatic int unix_proto_shutdown(struct socket *sock, int how);
socket93net/unix/sock.cstatic int unix_proto_setsockopt(struct socket *sock, int level, int optname,
socket95net/unix/sock.cstatic int unix_proto_getsockopt(struct socket *sock, int level, int optname,
socket136net/unix/sock.cstatic int unix_proto_listen(struct socket *sock, int backlog)
socket145net/unix/sock.cstatic int unix_proto_setsockopt(struct socket *sock, int level, int optname,
socket152net/unix/sock.cstatic int unix_proto_getsockopt(struct socket *sock, int level, int optname,
socket163net/unix/sock.cstatic int unix_proto_sendto(struct socket *sock, void *buff, int len, int nonblock, 
socket169net/unix/sock.cstatic int unix_proto_recvfrom(struct socket *sock, void *buff, int len, int nonblock, 
socket179net/unix/sock.cstatic int unix_proto_shutdown(struct socket *sock, int how)
socket189net/unix/sock.cstatic int unix_proto_send(struct socket *sock, void *buff, int len, int nonblock,
socket202net/unix/sock.cstatic int unix_proto_recv(struct socket *sock, void *buff, int len, int nonblock,
socket222net/unix/sock.cif (upd->refcnt > 0 && upd->socket &&
socket223net/unix/sock.cupd->socket->state == SS_UNCONNECTED &&
socket251net/unix/sock.cupd->socket = NULL;
socket306net/unix/sock.cstatic int unix_proto_create(struct socket *sock, int protocol)
socket331net/unix/sock.cupd->socket = sock;
socket341net/unix/sock.cstatic int unix_proto_dup(struct socket *newsock, struct socket *oldsock)
socket352net/unix/sock.cstatic int unix_proto_release(struct socket *sock, struct socket *peer)
socket359net/unix/sock.cif (upd->socket != sock) 
socket372net/unix/sock.cupd->socket = NULL;
socket391net/unix/sock.cstatic int unix_proto_bind(struct socket *sock, struct sockaddr *umyaddr,
socket445net/unix/sock.cstatic int unix_proto_connect(struct socket *sock, struct sockaddr *uservaddr,
socket498net/unix/sock.cif ((i = sock_awaitconn(sock, serv_upd->socket, flags)) < 0) 
socket519net/unix/sock.cstatic int unix_proto_socketpair(struct socket *sock1, struct socket *sock2)
socket535net/unix/sock.cstatic int unix_proto_accept(struct socket *sock, struct socket *newsock, int flags)
socket537net/unix/sock.cstruct socket *clientsock;
socket581net/unix/sock.cstatic int unix_proto_getname(struct socket *sock, struct sockaddr *usockaddr,
socket609net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
socket679net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
socket772net/unix/sock.cstatic int unix_proto_select(struct socket *sock, int sel_type, select_table * wait)
socket830net/unix/sock.cstatic int unix_proto_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
socket34net/unix/unix.hstruct socket  *socket;  /* socket we're bound to  */