Lines Matching defs:out
201 * out the sdcard_rw GID only to trusted apps, we're okay relaxing
513 struct fuse_entry_out out;
526 memset(&out, 0, sizeof(out));
527 attr_from_stat(fuse, &out.attr, &s, node);
528 out.attr_valid = 10;
529 out.entry_valid = 10;
530 out.nodeid = node->nid;
531 out.generation = node->gen;
533 fuse_reply(fuse, unique, &out, sizeof(out));
540 struct fuse_attr_out out;
546 memset(&out, 0, sizeof(out));
547 attr_from_stat(fuse, &out.attr, &s, node);
548 out.attr_valid = 10;
549 fuse_reply(fuse, unique, &out, sizeof(out));
1000 struct fuse_open_out out = {};
1027 out.fh = ptr_to_id(h);
1028 out.open_flags = 0;
1029 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1064 struct fuse_write_out out;
1080 out.size = res;
1081 out.padding = 0;
1082 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1091 struct fuse_statfs_out out;
1104 memset(&out, 0, sizeof(out));
1105 out.st.blocks = stat.f_blocks;
1106 out.st.bfree = stat.f_bfree;
1107 out.st.bavail = stat.f_bavail;
1108 out.st.files = stat.f_files;
1109 out.st.ffree = stat.f_ffree;
1110 out.st.bsize = stat.f_bsize;
1111 out.st.namelen = stat.f_namelen;
1112 out.st.frsize = stat.f_frsize;
1113 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1165 struct fuse_open_out out = {};
1190 out.fh = ptr_to_id(h);
1191 out.open_flags = 0;
1192 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1239 struct fuse_init_out out;
1258 out.minor = MIN(req->minor, 15);
1259 fuse_struct_size = sizeof(out);
1268 out.major = FUSE_KERNEL_VERSION;
1269 out.max_readahead = req->max_readahead;
1270 out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
1271 out.max_background = 32;
1272 out.congestion_threshold = 32;
1273 out.max_write = MAX_WRITE;
1274 fuse_reply(fuse, hdr->unique, &out, fuse_struct_size);