taglinefilesource code
ubuf29fs/open.cint sys_ustat(int dev, struct ustat * ubuf)
ubuf134include/unistd.hint ustat(dev_t 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);
ubuf231net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf235net/socket.cPRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size);
ubuf242net/socket.creturn sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK));
ubuf246net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf250net/socket.cPRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size);
ubuf257net/socket.creturn sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK));
ubuf52net/unix.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf54net/unix.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf396net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf442net/unix.cverify_area(ubuf, cando);
ubuf443net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf445net/unix.cubuf += cando;
ubuf460net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf520net/unix.cverify_area(ubuf, cando);
ubuf521net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf523net/unix.cubuf += cando;