• Home
  • Raw
  • Download

Lines Matching refs:out

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