taglinefilesource code
ubuf24fs/open.casmlinkage int sys_ustat(int dev, struct ustat * ubuf)
ubuf99include/linux/net.hint  (*read)    (struct socket *sock, char *ubuf, int size,
ubuf101include/linux/net.hint  (*write)  (struct socket *sock, char *ubuf, int size,
ubuf1299net/inet/sock.cinet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1316net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock,0));
ubuf1321net/inet/sock.cinet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1339net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1344net/inet/sock.cinet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1366net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1371net/inet/sock.cinet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1394net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1399net/inet/sock.cinet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1424net/inet/sock.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf1430net/inet/sock.cinet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1451net/inet/sock.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf272net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf276net/socket.cDPRINTF((net_debug, "NET: sock_read: buf=0x%x, size=%d\n", ubuf, size));
ubuf282net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf287net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf291net/socket.cDPRINTF((net_debug, "NET: sock_write: buf=0x%x, size=%d\n", ubuf, size));
ubuf297net/socket.creturn(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
ubuf71net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf73net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf604net/unix/sock.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf645net/unix/sock.cif((er=verify_area(VERIFY_WRITE,ubuf,cando))<0)
ubuf650net/unix/sock.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf652net/unix/sock.cubuf += cando;
ubuf669net/unix/sock.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf730net/unix/sock.cer=verify_area(VERIFY_READ, ubuf, cando);
ubuf736net/unix/sock.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf738net/unix/sock.cubuf += cando;