tag | line | file | source code |
ubuf | 24 | fs/open.c | asmlinkage int sys_ustat(int dev, struct ustat * ubuf) |
ubuf | 99 | include/linux/net.h | int (*read) (struct socket *sock, char *ubuf, int size, |
ubuf | 101 | include/linux/net.h | int (*write) (struct socket *sock, char *ubuf, int size, |
ubuf | 1038 | net/inet/af_inet.c | static int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1050 | net/inet/af_inet.c | return(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags, |
ubuf | 1055 | net/inet/af_inet.c | static int inet_recv(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1059 | net/inet/af_inet.c | return inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL); |
ubuf | 1062 | net/inet/af_inet.c | static int inet_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1071 | net/inet/af_inet.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0)); |
ubuf | 1074 | net/inet/af_inet.c | static int inet_send(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1088 | net/inet/af_inet.c | return(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags)); |
ubuf | 1091 | net/inet/af_inet.c | static int inet_write(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1093 | net/inet/af_inet.c | return inet_send(sock,ubuf,size,noblock,0); |
ubuf | 1096 | net/inet/af_inet.c | static int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1112 | net/inet/af_inet.c | return(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, |
ubuf | 955 | net/inet/ipx.c | static int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock, |
ubuf | 1095 | net/inet/ipx.c | memcpy_fromfs((char *)(ipx+1),ubuf,len); |
ubuf | 1130 | net/inet/ipx.c | static int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags) |
ubuf | 1132 | net/inet/ipx.c | return ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0); |
ubuf | 1135 | net/inet/ipx.c | static int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1162 | net/inet/ipx.c | skb_copy_datagram(skb,sizeof(struct ipx_packet),ubuf,copied); |
ubuf | 1177 | net/inet/ipx.c | static int ipx_write(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1179 | net/inet/ipx.c | return ipx_send(sock,ubuf,size,noblock,0); |
ubuf | 1183 | net/inet/ipx.c | static int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock, |
ubuf | 1189 | net/inet/ipx.c | return ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL); |
ubuf | 1192 | net/inet/ipx.c | static int ipx_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1194 | net/inet/ipx.c | return ipx_recv(sock,ubuf,size,noblock,0); |
ubuf | 370 | net/socket.c | static int sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 387 | net/socket.c | if ((err=verify_area(VERIFY_WRITE,ubuf,size))<0) |
ubuf | 389 | net/socket.c | return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK))); |
ubuf | 397 | net/socket.c | static int sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 416 | net/socket.c | if ((err=verify_area(VERIFY_READ,ubuf,size))<0) |
ubuf | 418 | 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; |