taglinefilesource code
ubuf32fs/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);
ubuf245net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf249net/socket.cPRINTK(("sock_read: buf=0x%x, size=%d\n", ubuf, size));
ubuf256net/socket.creturn sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK));
ubuf260net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf264net/socket.cPRINTK(("sock_write: buf=0x%x, size=%d\n", ubuf, size));
ubuf271net/socket.creturn sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK));
ubuf125net/tcp/sock.cstatic int ip_proto_read(struct socket *sock, char *ubuf, int size,
ubuf127net/tcp/sock.cstatic int ip_proto_write(struct socket *sock, char *ubuf, int size,
ubuf1397net/tcp/sock.cip_proto_read (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1416net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock,0));
ubuf1420net/tcp/sock.cip_proto_recv (struct socket *sock, void *ubuf, int size, int noblock,
ubuf1440net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock, flags));
ubuf1444net/tcp/sock.cip_proto_write (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1468net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, 0));
ubuf1473net/tcp/sock.cip_proto_send (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1498net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, flags));
ubuf1503net/tcp/sock.cip_proto_sendto (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1530net/tcp/sock.creturn (sk->prot->sendto (sk, ubuf, size, noblock, flags, 
ubuf1535net/tcp/sock.cip_proto_recvfrom (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1557net/tcp/sock.creturn (sk->prot->recvfrom (sk, ubuf, size, noblock, flags,
ubuf55net/unix.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf57net/unix.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf542net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf588net/unix.cverify_area(ubuf, cando);
ubuf589net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf591net/unix.cubuf += cando;
ubuf606net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf666net/unix.cverify_area(ubuf, cando);
ubuf667net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf669net/unix.cubuf += cando;