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,
ubuf1222net/inet/sock.cinet_read(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1239net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock,0));
ubuf1244net/inet/sock.cinet_recv(struct socket *sock, void *ubuf, int size, int noblock,
ubuf1262net/inet/sock.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1267net/inet/sock.cinet_write(struct socket *sock, char *ubuf, int size, int noblock)
ubuf1289net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, 0));
ubuf1294net/inet/sock.cinet_send(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1317net/inet/sock.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
ubuf1322net/inet/sock.cinet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1347net/inet/sock.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
ubuf1353net/inet/sock.cinet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
ubuf1374net/inet/sock.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
ubuf271net/socket.csock_read(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf275net/socket.cDPRINTF((net_debug, "NET: sock_read: buf=0x%x, size=%d\n", ubuf, size));
ubuf281net/socket.creturn(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
ubuf286net/socket.csock_write(struct inode *inode, struct file *file, char *ubuf, int size)
ubuf290net/socket.cDPRINTF((net_debug, "NET: sock_write: buf=0x%x, size=%d\n", ubuf, size));
ubuf296net/socket.creturn(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
ubuf69net/unix/sock.cstatic int unix_proto_read(struct socket *sock, char *ubuf, int size,
ubuf71net/unix/sock.cstatic int unix_proto_write(struct socket *sock, char *ubuf, int size,
ubuf575net/unix/sock.cunix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf614net/unix/sock.cif((er=verify_area(VERIFY_WRITE,ubuf,cando))<0)
ubuf616net/unix/sock.cmemcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando);
ubuf618net/unix/sock.cubuf += cando;
ubuf633net/unix/sock.cunix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock)
ubuf690net/unix/sock.cer=verify_area(VERIFY_READ, ubuf, cando);
ubuf693net/unix/sock.cmemcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando);
ubuf695net/unix/sock.cubuf += cando;