taglinefilesource code
ubuf28fs/open.cint sys_ustat(int dev, struct ustat * ubuf)
ubuf53net/kern_sock.hint (*read)(struct socket *sock, char *ubuf, int size, int nonblock);
ubuf54net/kern_sock.hint (*write)(struct socket *sock, char *ubuf, int size, int nonblock);
ubuf232net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf236net/socket.cPRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size);
ubuf243net/socket.creturn sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK));
ubuf247net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf251net/socket.cPRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size);
ubuf258net/socket.creturn sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK));
ubuf54net/unix.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf56net/unix.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf387net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf433net/unix.cverify_area(ubuf, cando);
ubuf434net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf436net/unix.cubuf += cando;
ubuf451net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf511net/unix.cverify_area(ubuf, cando);
ubuf512net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf514net/unix.cubuf += cando;