tag | line | file | source code |
ubuf | 24 | fs/open.c | int sys_ustat(int dev, struct ustat * ubuf) |
ubuf | 57 | net/kern_sock.h | int (*read)(struct socket *sock, char *ubuf, int size, int nonblock); |
ubuf | 58 | net/kern_sock.h | int (*write)(struct socket *sock, char *ubuf, int size, int nonblock); |
ubuf | 245 | net/socket.c | sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 249 | net/socket.c | PRINTK(("sock_read: buf=0x%x, size=%d\n", ubuf, size)); |
ubuf | 256 | net/socket.c | return sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)); |
ubuf | 260 | net/socket.c | sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 264 | net/socket.c | PRINTK(("sock_write: buf=0x%x, size=%d\n", ubuf, size)); |
ubuf | 271 | net/socket.c | return sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)); |
ubuf | 138 | net/tcp/sock.c | static int ip_proto_read(struct socket *sock, char *ubuf, int size, |
ubuf | 140 | net/tcp/sock.c | static int ip_proto_write(struct socket *sock, char *ubuf, int size, |
ubuf | 1423 | net/tcp/sock.c | ip_proto_read (struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1442 | net/tcp/sock.c | return (sk->prot->read (sk, ubuf, size, noblock,0)); |
ubuf | 1446 | net/tcp/sock.c | ip_proto_recv (struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1466 | net/tcp/sock.c | return (sk->prot->read (sk, ubuf, size, noblock, flags)); |
ubuf | 1470 | net/tcp/sock.c | ip_proto_write (struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1494 | net/tcp/sock.c | return (sk->prot->write (sk, ubuf, size, noblock, 0)); |
ubuf | 1499 | net/tcp/sock.c | ip_proto_send (struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1524 | net/tcp/sock.c | return (sk->prot->write (sk, ubuf, size, noblock, flags)); |
ubuf | 1529 | net/tcp/sock.c | ip_proto_sendto (struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1556 | net/tcp/sock.c | return (sk->prot->sendto (sk, ubuf, size, noblock, flags, |
ubuf | 1561 | net/tcp/sock.c | ip_proto_recvfrom (struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1583 | net/tcp/sock.c | return (sk->prot->recvfrom (sk, ubuf, size, noblock, flags, |
ubuf | 56 | net/unix.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
ubuf | 58 | net/unix.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
ubuf | 542 | net/unix.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 584 | net/unix.c | verify_area(VERIFY_WRITE,ubuf, cando); |
ubuf | 585 | net/unix.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
ubuf | 587 | net/unix.c | ubuf += cando; |
ubuf | 602 | net/unix.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 662 | net/unix.c | verify_area(VERIFY_WRITE,ubuf, cando); |
ubuf | 663 | net/unix.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
ubuf | 665 | net/unix.c | ubuf += cando; |