| tag | line | file | source code |
| ubuf | 24 | fs/open.c | asmlinkage int sys_ustat(int dev, struct ustat * ubuf) |
| ubuf | 100 | include/linux/net.h | int (*read) (struct socket *sock, char *ubuf, int size, |
| ubuf | 102 | include/linux/net.h | int (*write) (struct socket *sock, char *ubuf, int size, |
| ubuf | 1060 | net/inet/af_inet.c | static int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1072 | net/inet/af_inet.c | return(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags, |
| ubuf | 1077 | net/inet/af_inet.c | static int inet_recv(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1081 | net/inet/af_inet.c | return inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL); |
| ubuf | 1084 | net/inet/af_inet.c | static int inet_read(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1093 | net/inet/af_inet.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0)); |
| ubuf | 1096 | net/inet/af_inet.c | static int inet_send(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1110 | net/inet/af_inet.c | return(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags)); |
| ubuf | 1113 | net/inet/af_inet.c | static int inet_write(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1115 | net/inet/af_inet.c | return inet_send(sock,ubuf,size,noblock,0); |
| ubuf | 1118 | net/inet/af_inet.c | static int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1134 | net/inet/af_inet.c | return(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, |
| ubuf | 960 | net/inet/ipx.c | static int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock, |
| ubuf | 1101 | net/inet/ipx.c | memcpy_fromfs((char *)(ipx+1),ubuf,len); |
| ubuf | 1136 | net/inet/ipx.c | static int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags) |
| ubuf | 1138 | net/inet/ipx.c | return ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0); |
| ubuf | 1141 | net/inet/ipx.c | static int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
| ubuf | 1168 | net/inet/ipx.c | skb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied); |
| ubuf | 1183 | net/inet/ipx.c | static int ipx_write(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1185 | net/inet/ipx.c | return ipx_send(sock,ubuf,size,noblock,0); |
| ubuf | 1189 | net/inet/ipx.c | static int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock, |
| ubuf | 1195 | net/inet/ipx.c | return ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL); |
| ubuf | 1198 | net/inet/ipx.c | static int ipx_read(struct socket *sock, char *ubuf, int size, int noblock) |
| ubuf | 1200 | net/inet/ipx.c | return ipx_recv(sock,ubuf,size,noblock,0); |
| ubuf | 366 | net/socket.c | static int sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 383 | net/socket.c | if ((err=verify_area(VERIFY_WRITE,ubuf,size))<0) |
| ubuf | 385 | net/socket.c | return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK))); |
| ubuf | 393 | net/socket.c | static int sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 412 | net/socket.c | if ((err=verify_area(VERIFY_READ,ubuf,size))<0) |
| ubuf | 414 | net/socket.c | return(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK))); |
| ubuf | 73 | net/unix/sock.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
| ubuf | 75 | net/unix/sock.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
| ubuf | 608 | net/unix/sock.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 653 | net/unix/sock.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
| ubuf | 655 | net/unix/sock.c | ubuf += cando; |
| ubuf | 673 | net/unix/sock.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 743 | net/unix/sock.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
| ubuf | 745 | net/unix/sock.c | ubuf += cando; |