| tag | line | file | source code |
| ubuf | 25 | fs/open.c | asmlinkage int sys_ustat(int dev, struct ustat * ubuf) |
| ubuf | 103 | include/linux/net.h | int (*read) (struct socket *sock, char *ubuf, int size, |
| ubuf | 105 | include/linux/net.h | int (*write) (struct socket *sock, char *ubuf, int size, |
| ubuf | 1105 | net/inet/af_inet.c | static int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1117 | net/inet/af_inet.c | return(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags, |
| ubuf | 1122 | net/inet/af_inet.c | static int inet_recv(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1126 | net/inet/af_inet.c | return inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL); |
| ubuf | 1129 | net/inet/af_inet.c | static int inet_read(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1138 | net/inet/af_inet.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0)); |
| ubuf | 1141 | net/inet/af_inet.c | static int inet_send(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1155 | net/inet/af_inet.c | return(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags)); |
| ubuf | 1158 | net/inet/af_inet.c | static int inet_write(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1160 | net/inet/af_inet.c | return inet_send(sock,ubuf,size,noblock,0); |
| ubuf | 1163 | net/inet/af_inet.c | static int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1179 | net/inet/af_inet.c | return(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, |
| ubuf | 956 | net/inet/ipx.c | ipxrtr_route_packet(ipx_socket *sk, struct sockaddr_ipx *usipx, void *ubuf, int len) |
| ubuf | 1006 | net/inet/ipx.c | memcpy_fromfs((char *)(ipx+1),ubuf,len); |
| ubuf | 1646 | net/inet/ipx.c | static int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock, |
| ubuf | 1686 | net/inet/ipx.c | retval = ipxrtr_route_packet(sk, usipx, ubuf, len); |
| ubuf | 1692 | net/inet/ipx.c | static int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags) |
| ubuf | 1694 | net/inet/ipx.c | return ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0); |
| ubuf | 1697 | net/inet/ipx.c | static int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1727 | net/inet/ipx.c | skb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied); |
| ubuf | 1741 | net/inet/ipx.c | static int ipx_write(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1743 | net/inet/ipx.c | return ipx_send(sock,ubuf,size,noblock,0); |
| ubuf | 1747 | net/inet/ipx.c | static int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock, |
| ubuf | 1753 | net/inet/ipx.c | return ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL); |
| ubuf | 1756 | net/inet/ipx.c | static int ipx_read(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1758 | net/inet/ipx.c | return ipx_recv(sock,ubuf,size,noblock,0); |
| ubuf | 315 | net/socket.c | static int sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 332 | net/socket.c | if ((err=verify_area(VERIFY_WRITE,ubuf,size))<0) |
| ubuf | 334 | net/socket.c | return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK))); |
| ubuf | 342 | net/socket.c | static int sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 361 | net/socket.c | if ((err=verify_area(VERIFY_READ,ubuf,size))<0) |
| ubuf | 363 | net/socket.c | return(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK))); |
| ubuf | 72 | net/unix/sock.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
| ubuf | 74 | net/unix/sock.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
| ubuf | 609 | net/unix/sock.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 656 | net/unix/sock.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
| ubuf | 658 | net/unix/sock.c | ubuf += cando; |
| ubuf | 679 | net/unix/sock.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 751 | net/unix/sock.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
| ubuf | 753 | net/unix/sock.c | ubuf += cando; |