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,
ubuf1028net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1040net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf1045net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1049net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
ubuf1052net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1061net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1064net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1078net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1081net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1083net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
ubuf1086net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1102net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf954net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
ubuf1094net/inet/ipx.cmemcpy_fromfs((char *)(ipx+1),ubuf,len);
ubuf1129net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
ubuf1131net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
ubuf1134net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1161net/inet/ipx.cskb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied);
ubuf1176net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1178net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
ubuf1182net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
ubuf1188net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
ubuf1191net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1193net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
ubuf369net/socket.cstatic int sock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf386net/socket.cif ((err=verify_area(VERIFY_WRITE,ubuf,size))<0)
ubuf388net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf396net/socket.cstatic int sock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf415net/socket.cif ((err=verify_area(VERIFY_READ,ubuf,size))<0)
ubuf417net/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;