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,
ubuf1282net/inet/sock.cinet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1299net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock,0));
ubuf1304net/inet/sock.cinet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1322net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1327net/inet/sock.cinet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1349net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1354net/inet/sock.cinet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1377net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1382net/inet/sock.cinet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1407net/inet/sock.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf1413net/inet/sock.cinet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1434net/inet/sock.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf273net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf277net/socket.cDPRINTF((net_debug, "NET: sock_read: buf=0x%x, size=%d\n", ubuf, size));
ubuf283net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf288net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf292net/socket.cDPRINTF((net_debug, "NET: sock_write: buf=0x%x, size=%d\n", ubuf, size));
ubuf298net/socket.creturn(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
ubuf70net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf72net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf599net/unix/sock.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf640net/unix/sock.cif((er=verify_area(VERIFY_WRITE,ubuf,cando))<0)
ubuf645net/unix/sock.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf647net/unix/sock.cubuf += cando;
ubuf663net/unix/sock.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf724net/unix/sock.cer=verify_area(VERIFY_READ, ubuf, cando);
ubuf730net/unix/sock.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf732net/unix/sock.cubuf += cando;