Lines Matching refs:out
128 fuse_init_out out; in handle_init() local
129 out.minor = MIN(req->minor, FUSE_KERNEL_MINOR_VERSION); in handle_init()
130 size_t fuse_struct_size = sizeof(out); in handle_init()
141 out.major = FUSE_KERNEL_VERSION; in handle_init()
142 out.max_readahead = req->max_readahead; in handle_init()
143 out.flags = 0; in handle_init()
144 out.max_background = 32; in handle_init()
145 out.congestion_threshold = 32; in handle_init()
146 out.max_write = 4096; in handle_init()
147 fuse_reply(fd, hdr->unique, &out, fuse_struct_size); in handle_init()
167 fuse_attr_out out = {}; in handle_getattr() local
168 out.attr_valid = 10; in handle_getattr()
171 fill_attr(&(out.attr), fd, hdr->nodeid, 4096, S_IFDIR | 0555); in handle_getattr()
173 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444); in handle_getattr()
175 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0); in handle_getattr()
180 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_getattr()
187 fuse_entry_out out = {}; in handle_lookup() local
188 out.entry_valid = 10; in handle_lookup()
189 out.attr_valid = 10; in handle_lookup()
193 out.nodeid = PACKAGE_FILE_ID; in handle_lookup()
194 out.generation = PACKAGE_FILE_ID; in handle_lookup()
195 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444); in handle_lookup()
197 out.nodeid = EXIT_FLAG_ID; in handle_lookup()
198 out.generation = EXIT_FLAG_ID; in handle_lookup()
199 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0); in handle_lookup()
204 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_lookup()
205 return (out.nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS; in handle_lookup()
212 fuse_open_out out = {}; in handle_open() local
213 out.fh = 10; // an arbitrary number; we always use the same handle in handle_open()
214 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_open()