tag | line | file | source code |
ubuf | 24 | fs/open.c | asmlinkage int sys_ustat(int dev, struct ustat * ubuf) |
ubuf | 99 | include/linux/net.h | int (*read) (struct socket *sock, char *ubuf, int size, |
ubuf | 101 | include/linux/net.h | int (*write) (struct socket *sock, char *ubuf, int size, |
ubuf | 1222 | net/inet/sock.c | inet_read(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1239 | net/inet/sock.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock,0)); |
ubuf | 1244 | net/inet/sock.c | inet_recv(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1262 | net/inet/sock.c | return(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, flags)); |
ubuf | 1267 | net/inet/sock.c | inet_write(struct socket *sock, char *ubuf, int size, int noblock) |
ubuf | 1289 | net/inet/sock.c | return(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, 0)); |
ubuf | 1294 | net/inet/sock.c | inet_send(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1317 | net/inet/sock.c | return(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags)); |
ubuf | 1322 | net/inet/sock.c | inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1347 | net/inet/sock.c | return(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, |
ubuf | 1353 | net/inet/sock.c | inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, |
ubuf | 1374 | net/inet/sock.c | return(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags, |
ubuf | 271 | net/socket.c | sock_read(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 275 | net/socket.c | DPRINTF((net_debug, "NET: sock_read: buf=0x%x, size=%d\n", ubuf, size)); |
ubuf | 281 | net/socket.c | return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK))); |
ubuf | 286 | net/socket.c | sock_write(struct inode *inode, struct file *file, char *ubuf, int size) |
ubuf | 290 | net/socket.c | DPRINTF((net_debug, "NET: sock_write: buf=0x%x, size=%d\n", ubuf, size)); |
ubuf | 296 | net/socket.c | return(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK))); |
ubuf | 69 | net/unix/sock.c | static int unix_proto_read(struct socket *sock, char *ubuf, int size, |
ubuf | 71 | net/unix/sock.c | static int unix_proto_write(struct socket *sock, char *ubuf, int size, |
ubuf | 575 | net/unix/sock.c | unix_proto_read(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 614 | net/unix/sock.c | if((er=verify_area(VERIFY_WRITE,ubuf,cando))<0) |
ubuf | 616 | net/unix/sock.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
ubuf | 618 | net/unix/sock.c | ubuf += cando; |
ubuf | 633 | net/unix/sock.c | unix_proto_write(struct socket *sock, char *ubuf, int size, int nonblock) |
ubuf | 690 | net/unix/sock.c | er=verify_area(VERIFY_READ, ubuf, cando); |
ubuf | 693 | net/unix/sock.c | memcpy_fromfs(pupd->buf + pupd->bp_head, ubuf, cando); |
ubuf | 695 | net/unix/sock.c | ubuf += cando; |