taglinefilesource code
ubuf25fs/open.casmlinkage int sys_ustat(int dev, struct ustat * ubuf)
ubuf103include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
ubuf105include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
ubuf1105net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1117net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf1122net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1126net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
ubuf1129net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1138net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1141net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1155net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1158net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1160net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
ubuf1163net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1179net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf954net/inet/ipx.cipxrtr_route_packet(ipx_socket *sk, struct sockaddr_ipx *usipx, void *ubuf, int len)
ubuf1004net/inet/ipx.cmemcpy_fromfs((char *)(ipx+1),ubuf,len);
ubuf1644net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
ubuf1684net/inet/ipx.cretval = ipxrtr_route_packet(sk, usipx, ubuf, len);
ubuf1690net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
ubuf1692net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
ubuf1695net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1725net/inet/ipx.cskb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied);
ubuf1739net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1741net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
ubuf1745net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
ubuf1751net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
ubuf1754net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1756net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
ubuf315net/socket.cstatic int sock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf332net/socket.cif ((err=verify_area(VERIFY_WRITE,ubuf,size))<0)
ubuf334net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf342net/socket.cstatic int sock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf361net/socket.cif ((err=verify_area(VERIFY_READ,ubuf,size))<0)
ubuf363net/socket.creturn(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
ubuf72net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf74net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf609net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf656net/unix/sock.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf658net/unix/sock.cubuf += cando;
ubuf679net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf751net/unix/sock.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf753net/unix/sock.cubuf += cando;