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,
ubuf1378net/tcp/sock.cip_proto_read (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1397net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock,0));
ubuf1401net/tcp/sock.cip_proto_recv (struct socket *sock, void *ubuf, int size, int noblock,
ubuf1421net/tcp/sock.creturn (sk->prot->read (sk, ubuf, size, noblock, flags));
ubuf1425net/tcp/sock.cip_proto_write (struct socket *sock, char *ubuf, int size, int noblock)
ubuf1449net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, 0));
ubuf1454net/tcp/sock.cip_proto_send (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1479net/tcp/sock.creturn (sk->prot->write (sk, ubuf, size, noblock, flags));
ubuf1484net/tcp/sock.cip_proto_sendto (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1511net/tcp/sock.creturn (sk->prot->sendto (sk, ubuf, size, noblock, flags, 
ubuf1516net/tcp/sock.cip_proto_recvfrom (struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1538net/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,
ubuf518net/unix.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf564net/unix.cverify_area(ubuf, cando);
ubuf565net/unix.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf567net/unix.cubuf += cando;
ubuf582net/unix.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf642net/unix.cverify_area(ubuf, cando);
ubuf643net/unix.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf645net/unix.cubuf += cando;