Home | History | Annotate | Download | only in recovery

Lines Matching defs:out

119     struct fuse_init_out out;
121 out.major = FUSE_KERNEL_VERSION;
122 out.minor = FUSE_KERNEL_MINOR_VERSION;
123 out.max_readahead = req->max_readahead;
124 out.flags = 0;
125 out.max_background = 32;
126 out.congestion_threshold = 32;
127 out.max_write = 4096;
128 fuse_reply(fd, hdr->unique, &out, sizeof(out));
149 struct fuse_attr_out out;
150 memset(&out, 0, sizeof(out));
151 out.attr_valid = 10;
154 fill_attr(&(out.attr), fd, hdr->nodeid, 4096, S_IFDIR | 0555);
156 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
158 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
163 fuse_reply(fd, hdr->unique, &out, sizeof(out));
169 struct fuse_entry_out out;
170 memset(&out, 0, sizeof(out));
171 out.entry_valid = 10;
172 out.attr_valid = 10;
176 out.nodeid = PACKAGE_FILE_ID;
177 out.generation = PACKAGE_FILE_ID;
178 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
181 out.nodeid = EXIT_FLAG_ID;
182 out.generation = EXIT_FLAG_ID;
183 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
188 fuse_reply(fd, hdr->unique, &out, sizeof(out));
189 return (out.nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS;
198 struct fuse_open_out out;
199 memset(&out, 0, sizeof(out));
200 out.fh = 10; // an arbitrary number; we always use the same handle
201 fuse_reply(fd, hdr->unique, &out, sizeof(out));