taglinefilesource code
ubuf24fs/open.cint sys_ustat(int dev, struct ustat * ubuf)
ubuf57net/kern_sock.hint (*read)(struct socket *sock, char *ubuf, int size, int nonblock);
ubuf58net/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));
ubuf138net/tcp/sock.cstatic int ip_proto_read(struct socket *sock, char *ubuf, int size,
ubuf140net/tcp/sock.cstatic int ip_proto_write(struct socket *sock, char *ubuf, int size,
ubuf1423net/tcp/sock.cip_proto_read (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1442net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock,0));
ubuf1446net/tcp/sock.cip_proto_recv (struct socket *sock, void *ubuf, int size, int noblock,
ubuf1466net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock, flags));
ubuf1470net/tcp/sock.cip_proto_write (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1494net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, 0));
ubuf1499net/tcp/sock.cip_proto_send (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1524net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, flags));
ubuf1529net/tcp/sock.cip_proto_sendto (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1556net/tcp/sock.creturn (sk->prot->sendto (sk, ubuf, size, noblock, flags, 
ubuf1561net/tcp/sock.cip_proto_recvfrom (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1583net/tcp/sock.creturn (sk->prot->recvfrom (sk, ubuf, size, noblock, flags,
ubuf56net/unix.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf58net/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)
ubuf584net/unix.cverify_area(VERIFY_WRITE,ubuf, cando);
ubuf585net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf587net/unix.cubuf += cando;
ubuf602net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf662net/unix.cverify_area(VERIFY_WRITE,ubuf, cando);
ubuf663net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf665net/unix.cubuf += cando;