tag | line | file | source code |
ubuf | 257 | fs/super.c | asmlinkage int sys_ustat(dev_t dev, struct ustat * ubuf) |
ubuf | 272 | fs/super.c | error = verify_area(VERIFY_WRITE,ubuf,sizeof(struct ustat)); |
ubuf | 285 | fs/super.c | memcpy_tofs(ubuf,&tmp,sizeof(struct ustat)); |
ubuf | 105 | include/linux/net.h | int (*read) (struct socket *sock, char *ubuf, int size, |
ubuf | 107 | include/linux/net.h | int (*write) (struct socket *sock, const char *ubuf, int size, |
ubuf | 1647 | net/appletalk/ddp.c | static int atalk_sendto(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 1652 | net/appletalk/ddp.c | iov.iov_base=(void *)ubuf; |
ubuf | 1663 | net/appletalk/ddp.c | static int atalk_send(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags) |
ubuf | 1665 | net/appletalk/ddp.c | return atalk_sendto(sock,ubuf,size,noblock,flags,NULL,0); |
ubuf | 1718 | net/appletalk/ddp.c | static int atalk_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1720 | net/appletalk/ddp.c | return atalk_send(sock,ubuf,size,noblock,0); |
ubuf | 1724 | net/appletalk/ddp.c | static int atalk_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 1729 | net/appletalk/ddp.c | iov.iov_base=ubuf; |
ubuf | 1741 | net/appletalk/ddp.c | static int atalk_recv(struct socket *sock, void *ubuf, int size , int noblock, |
ubuf | 1747 | net/appletalk/ddp.c | return atalk_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL); |
ubuf | 1750 | net/appletalk/ddp.c | static int atalk_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1752 | net/appletalk/ddp.c | return atalk_recv(sock,ubuf,size,noblock,0); |
ubuf | 1785 | net/ax25/af_ax25.c | static int ax25_sendto(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 1790 | net/ax25/af_ax25.c | iov.iov_base=(void *)ubuf; |
ubuf | 1801 | net/ax25/af_ax25.c | static int ax25_send(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags) |
ubuf | 1803 | net/ax25/af_ax25.c | return ax25_sendto(sock, ubuf, size, noblock, flags, NULL, 0); |
ubuf | 1806 | net/ax25/af_ax25.c | static int ax25_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1808 | net/ax25/af_ax25.c | return ax25_sendto(sock, ubuf, size, noblock, 0, NULL, 0); |
ubuf | 1881 | net/ax25/af_ax25.c | static int ax25_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 1886 | net/ax25/af_ax25.c | iov.iov_base=ubuf; |
ubuf | 1898 | net/ax25/af_ax25.c | static int ax25_recv(struct socket *sock, void *ubuf, int size , int noblock, |
ubuf | 1906 | net/ax25/af_ax25.c | return ax25_recvfrom(sock, ubuf, size, noblock, flags, NULL, NULL); |
ubuf | 1909 | net/ax25/af_ax25.c | static int ax25_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1911 | net/ax25/af_ax25.c | return ax25_recv(sock, ubuf, size, noblock, 0); |
ubuf | 1169 | net/ipv4/af_inet.c | static int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1181 | net/ipv4/af_inet.c | return(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags, |
ubuf | 1186 | net/ipv4/af_inet.c | static int inet_recv(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1190 | net/ipv4/af_inet.c | return inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL); |
ubuf | 1193 | net/ipv4/af_inet.c | static int inet_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1202 | net/ipv4/af_inet.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0)); |
ubuf | 1205 | net/ipv4/af_inet.c | static int inet_send(struct socket *sock, const void *ubuf, int size, int noblock, |
ubuf | 1219 | net/ipv4/af_inet.c | return(sk->prot->write(sk, (const unsigned char *) ubuf, size, noblock, flags)); |
ubuf | 1222 | net/ipv4/af_inet.c | static int inet_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1224 | net/ipv4/af_inet.c | return inet_send(sock,ubuf,size,noblock,0); |
ubuf | 1227 | net/ipv4/af_inet.c | static int inet_sendto(struct socket *sock, const void *ubuf, int size, int noblock, |
ubuf | 1243 | net/ipv4/af_inet.c | return(sk->prot->sendto(sk, (const unsigned char *) ubuf, size, noblock, flags, |
ubuf | 992 | net/ipx/af_ipx.c | ipxrtr_route_packet(ipx_socket *sk, struct sockaddr_ipx *usipx, const void *ubuf, int len) |
ubuf | 1042 | net/ipx/af_ipx.c | memcpy_fromfs(skb_put(skb,len),ubuf,len); |
ubuf | 1694 | net/ipx/af_ipx.c | static int ipx_sendto(struct socket *sock, const void *ubuf, int len, int noblock, |
ubuf | 1731 | net/ipx/af_ipx.c | retval = ipxrtr_route_packet(sk, usipx, ubuf, len); |
ubuf | 1737 | net/ipx/af_ipx.c | static int ipx_send(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags) |
ubuf | 1739 | net/ipx/af_ipx.c | return ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0); |
ubuf | 1742 | net/ipx/af_ipx.c | static int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1773 | net/ipx/af_ipx.c | skb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied); |
ubuf | 1787 | net/ipx/af_ipx.c | static int ipx_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1789 | net/ipx/af_ipx.c | return ipx_send(sock,ubuf,size,noblock,0); |
ubuf | 1793 | net/ipx/af_ipx.c | static int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock, |
ubuf | 1799 | net/ipx/af_ipx.c | return ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL); |
ubuf | 1802 | net/ipx/af_ipx.c | static int ipx_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1804 | net/ipx/af_ipx.c | return ipx_recv(sock,ubuf,size,noblock,0); |
ubuf | 1022 | net/netrom/af_netrom.c | static int nr_sendto(struct socket *sock, const void *ubuf, int len, int noblock, |
ubuf | 1113 | net/netrom/af_netrom.c | memcpy_fromfs(asmptr, ubuf, len); |
ubuf | 1128 | net/netrom/af_netrom.c | static int nr_send(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags) |
ubuf | 1130 | net/netrom/af_netrom.c | return nr_sendto(sock, ubuf, size, noblock, flags, NULL, 0); |
ubuf | 1133 | net/netrom/af_netrom.c | static int nr_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1135 | net/netrom/af_netrom.c | return nr_send(sock, ubuf, size, noblock, 0); |
ubuf | 1138 | net/netrom/af_netrom.c | static int nr_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1173 | net/netrom/af_netrom.c | skb_copy_datagram(skb, 0, ubuf, copied); |
ubuf | 1191 | net/netrom/af_netrom.c | static int nr_recv(struct socket *sock, void *ubuf, int size , int noblock, |
ubuf | 1199 | net/netrom/af_netrom.c | return nr_recvfrom(sock, ubuf, size, noblock, flags, NULL, NULL); |
ubuf | 1202 | net/netrom/af_netrom.c | static int nr_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1204 | net/netrom/af_netrom.c | return nr_recv(sock, ubuf, size, noblock, 0); |
ubuf | 318 | net/socket.c | static int sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 331 | net/socket.c | if ((err=verify_area(VERIFY_WRITE,ubuf,size))<0) |
ubuf | 333 | net/socket.c | return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK))); |
ubuf | 341 | net/socket.c | static int sock_write(struct inode *inode, struct file *file, const char *ubuf, int size) |
ubuf | 356 | net/socket.c | if ((err=verify_area(VERIFY_READ,ubuf,size))<0) |
ubuf | 358 | net/socket.c | return(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK))); |
ubuf | 971 | net/unix/af_unix.c | static int unix_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 976 | net/unix/af_unix.c | iov.iov_base=ubuf; |
ubuf | 988 | net/unix/af_unix.c | static int unix_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 990 | net/unix/af_unix.c | return unix_recvfrom(sock,ubuf,size,noblock,0,NULL,NULL); |
ubuf | 993 | net/unix/af_unix.c | static int unix_recv(struct socket *sock, void *ubuf, int size, int noblock, unsigned int flags) |
ubuf | 995 | net/unix/af_unix.c | return unix_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL); |
ubuf | 998 | net/unix/af_unix.c | static int unix_sendto(struct socket *sock, const void *ubuf, int size, int noblock, unsigned flags, |
ubuf | 1003 | net/unix/af_unix.c | iov.iov_base=(void *)ubuf; |
ubuf | 1013 | net/unix/af_unix.c | static int unix_write(struct socket *sock, const char *ubuf, int size, int noblock) |
ubuf | 1015 | net/unix/af_unix.c | return unix_sendto(sock,ubuf,size,noblock, 0, NULL, 0); |
ubuf | 1018 | net/unix/af_unix.c | static int unix_send(struct socket *sock, const void *ubuf, int size, int noblock, unsigned int flags) |
ubuf | 1020 | net/unix/af_unix.c | return unix_sendto(sock,ubuf,size,noblock, flags, NULL, 0); |