taglinefilesource code
ubuf30fs/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);
ubuf239net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf243net/socket.cPRINTK("sock_read: buf=0x%x, size=%d\n", ubuf, size);
ubuf250net/socket.creturn sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK));
ubuf254net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf258net/socket.cPRINTK("sock_write: buf=0x%x, size=%d\n", ubuf, size);
ubuf265net/socket.creturn sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK));
ubuf67net/tcp/sock.cstatic int ip_proto_read(struct socket *sock, char *ubuf, int size,
ubuf69net/tcp/sock.cstatic int ip_proto_write(struct socket *sock, char *ubuf, int size,
ubuf1135net/tcp/sock.cip_proto_read (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1146net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock,0));
ubuf1150net/tcp/sock.cip_proto_recv (struct socket *sock, void *ubuf, int size, int noblock,
ubuf1162net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock, flags));
ubuf1166net/tcp/sock.cip_proto_write (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1177net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, 0));
ubuf1182net/tcp/sock.cip_proto_send (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1194net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, flags));
ubuf1199net/tcp/sock.cip_proto_sendto (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1212net/tcp/sock.creturn (sk->prot->sendto (sk, ubuf, size, noblock, flags, 
ubuf1217net/tcp/sock.cip_proto_recvfrom (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1230net/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,
ubuf505net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf551net/unix.cverify_area(ubuf, cando);
ubuf552net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf554net/unix.cubuf += cando;
ubuf569net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf629net/unix.cverify_area(ubuf, cando);
ubuf630net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf632net/unix.cubuf += cando;