| tag | line | file | source code |
| ubuf | 29 | fs/open.c | int sys_ustat(int dev, struct ustat * ubuf) |
| ubuf | 134 | include/unistd.h | int ustat(dev_t dev, struct ustat * ubuf); |
| ubuf | 53 | net/kern_sock.h | int (*read)(struct socket *sock, char *ubuf, int size, int nonblock); |
| ubuf | 54 | net/kern_sock.h | int (*write)(struct socket *sock, char *ubuf, int size, int nonblock); |
| ubuf | 231 | net/socket.c | sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 235 | net/socket.c | PRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size); |
| ubuf | 242 | net/socket.c | return sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)); |
| ubuf | 246 | net/socket.c | sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
| ubuf | 250 | net/socket.c | PRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size); |
| ubuf | 257 | net/socket.c | return sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)); |
| ubuf | 52 | net/unix.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
| ubuf | 54 | net/unix.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
| ubuf | 396 | net/unix.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 442 | net/unix.c | verify_area(ubuf, cando); |
| ubuf | 443 | net/unix.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
| ubuf | 445 | net/unix.c | ubuf += cando; |
| ubuf | 460 | net/unix.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
| ubuf | 520 | net/unix.c | verify_area(ubuf, cando); |
| ubuf | 521 | net/unix.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
| ubuf | 523 | net/unix.c | ubuf += cando; |