taglinefilesource code
ubuf24fs/open.casmlinkage int sys_ustat(int dev, struct ustat * ubuf)
ubuf100include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
ubuf102include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
ubuf1060net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1072net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf1077net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1081net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
ubuf1084net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1093net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1096net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1110net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1113net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1115net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
ubuf1118net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1134net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf960net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
ubuf1101net/inet/ipx.cmemcpy_fromfs((char *)(ipx+1),ubuf,len);
ubuf1136net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
ubuf1138net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
ubuf1141net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1168net/inet/ipx.cskb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied);
ubuf1183net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1185net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
ubuf1189net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
ubuf1195net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
ubuf1198net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1200net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
ubuf366net/socket.cstatic int sock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf383net/socket.cif ((err=verify_area(VERIFY_WRITE,ubuf,size))<0)
ubuf385net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf393net/socket.cstatic int sock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf412net/socket.cif ((err=verify_area(VERIFY_READ,ubuf,size))<0)
ubuf414net/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;