Lines Matching refs:out

120     struct fuse_init_out out;  in handle_init()  local
135 out.minor = MIN(req->minor, FUSE_KERNEL_MINOR_VERSION); in handle_init()
136 fuse_struct_size = sizeof(out); in handle_init()
148 out.major = FUSE_KERNEL_VERSION; in handle_init()
149 out.max_readahead = req->max_readahead; in handle_init()
150 out.flags = 0; in handle_init()
151 out.max_background = 32; in handle_init()
152 out.congestion_threshold = 32; in handle_init()
153 out.max_write = 4096; in handle_init()
154 fuse_reply(fd, hdr->unique, &out, fuse_struct_size); in handle_init()
175 struct fuse_attr_out out; in handle_getattr() local
176 memset(&out, 0, sizeof(out)); in handle_getattr()
177 out.attr_valid = 10; in handle_getattr()
180 fill_attr(&(out.attr), fd, hdr->nodeid, 4096, S_IFDIR | 0555); in handle_getattr()
182 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444); in handle_getattr()
184 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0); in handle_getattr()
189 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_getattr()
195 struct fuse_entry_out out; in handle_lookup() local
196 memset(&out, 0, sizeof(out)); in handle_lookup()
197 out.entry_valid = 10; in handle_lookup()
198 out.attr_valid = 10; in handle_lookup()
202 out.nodeid = PACKAGE_FILE_ID; in handle_lookup()
203 out.generation = PACKAGE_FILE_ID; in handle_lookup()
204 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444); in handle_lookup()
207 out.nodeid = EXIT_FLAG_ID; in handle_lookup()
208 out.generation = EXIT_FLAG_ID; in handle_lookup()
209 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0); in handle_lookup()
214 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_lookup()
215 return (out.nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS; in handle_lookup()
224 struct fuse_open_out out; in handle_open() local
225 memset(&out, 0, sizeof(out)); in handle_open()
226 out.fh = 10; // an arbitrary number; we always use the same handle in handle_open()
227 fuse_reply(fd, hdr->unique, &out, sizeof(out)); in handle_open()