taglinefilesource code
ubuf24fs/open.casmlinkage int sys_ustat(int dev, struct ustat * ubuf)
ubuf99include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
ubuf101include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
ubuf1038net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1050net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf1055net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1059net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
ubuf1062net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1071net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1074net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1088net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1091net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1093net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
ubuf1096net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1112net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf955net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
ubuf1095net/inet/ipx.cmemcpy_fromfs((char *)(ipx+1),ubuf,len);
ubuf1130net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
ubuf1132net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
ubuf1135net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1162net/inet/ipx.cskb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied);
ubuf1177net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1179net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
ubuf1183net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
ubuf1189net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
ubuf1192net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1194net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
ubuf370net/socket.cstatic int sock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf387net/socket.cif ((err=verify_area(VERIFY_WRITE,ubuf,size))<0)
ubuf389net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf397net/socket.cstatic int sock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf416net/socket.cif ((err=verify_area(VERIFY_READ,ubuf,size))<0)
ubuf418net/socket.creturn(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
ubuf73net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf75net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf608net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf653net/unix/sock.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf655net/unix/sock.cubuf += cando;
ubuf673net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf743net/unix/sock.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf745net/unix/sock.cubuf += cando;