Lines Matching refs:out

472     struct fuse_entry_out out;
485 memset(&out, 0, sizeof(out));
486 attr_from_stat(&out.attr, &s, node->nid);
487 out.attr_valid = 10;
488 out.entry_valid = 10;
489 out.nodeid = node->nid;
490 out.generation = node->gen;
492 fuse_reply(fuse, unique, &out, sizeof(out));
499 struct fuse_attr_out out;
505 memset(&out, 0, sizeof(out));
506 attr_from_stat(&out.attr, &s, nid);
507 out.attr_valid = 10;
508 fuse_reply(fuse, unique, &out, sizeof(out));
806 struct fuse_open_out out;
828 out.fh = ptr_to_id(h);
829 out.open_flags = 0;
830 out.padding = 0;
831 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
865 struct fuse_write_out out;
875 out.size = res;
876 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
885 struct fuse_statfs_out out;
898 memset(&out, 0, sizeof(out));
899 out.st.blocks = stat.f_blocks;
900 out.st.bfree = stat.f_bfree;
901 out.st.bavail = stat.f_bavail;
902 out.st.files = stat.f_files;
903 out.st.ffree = stat.f_ffree;
904 out.st.bsize = stat.f_bsize;
905 out.st.namelen = stat.f_namelen;
906 out.st.frsize = stat.f_frsize;
907 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
950 struct fuse_open_out out;
972 out.fh = ptr_to_id(h);
973 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1020 struct fuse_init_out out;
1024 out.major = FUSE_KERNEL_VERSION;
1025 out.minor = FUSE_KERNEL_MINOR_VERSION;
1026 out.max_readahead = req->max_readahead;
1027 out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
1028 out.max_background = 32;
1029 out.congestion_threshold = 32;
1030 out.max_write = MAX_WRITE;
1031 fuse_reply(fuse, hdr->unique, &out, sizeof(out));