tag | line | file | source code |
ubuf | 28 | fs/open.c | int sys_ustat(int 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 | 232 | net/socket.c | sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 236 | net/socket.c | PRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size); |
ubuf | 243 | net/socket.c | return sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)); |
ubuf | 247 | net/socket.c | sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 251 | net/socket.c | PRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size); |
ubuf | 258 | net/socket.c | return sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)); |
ubuf | 54 | net/unix.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
ubuf | 56 | net/unix.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
ubuf | 387 | net/unix.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 433 | net/unix.c | verify_area(ubuf, cando); |
ubuf | 434 | net/unix.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
ubuf | 436 | net/unix.c | ubuf += cando; |
ubuf | 451 | net/unix.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 511 | net/unix.c | verify_area(ubuf, cando); |
ubuf | 512 | net/unix.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
ubuf | 514 | net/unix.c | ubuf += cando; |