Lines Matching defs:out
421 * out the sdcard_rw GID only to trusted apps, we're okay relaxing
724 struct fuse_entry_out out;
737 memset(&out, 0, sizeof(out));
738 attr_from_stat(fuse, &out.attr, &s, node);
739 out.attr_valid = 10;
740 out.entry_valid = 10;
741 out.nodeid = node->nid;
742 out.generation = node->gen;
744 fuse_reply(fuse, unique, &out, sizeof(out));
751 struct fuse_attr_out out;
757 memset(&out, 0, sizeof(out));
758 attr_from_stat(fuse, &out.attr, &s, node);
759 out.attr_valid = 10;
760 fuse_reply(fuse, unique, &out, sizeof(out));
1196 struct fuse_open_out out;
1222 out.fh = ptr_to_id(h);
1223 out.open_flags = 0;
1224 out.padding = 0;
1225 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1260 struct fuse_write_out out;
1276 out.size = res;
1277 out.padding = 0;
1278 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1287 struct fuse_statfs_out out;
1300 memset(&out, 0, sizeof(out));
1301 out.st.blocks = stat.f_blocks;
1302 out.st.bfree = stat.f_bfree;
1303 out.st.bavail = stat.f_bavail;
1304 out.st.files = stat.f_files;
1305 out.st.ffree = stat.f_ffree;
1306 out.st.bsize = stat.f_bsize;
1307 out.st.namelen = stat.f_namelen;
1308 out.st.frsize = stat.f_frsize;
1309 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1361 struct fuse_open_out out;
1386 out.fh = ptr_to_id(h);
1387 out.open_flags = 0;
1388 out.padding = 0;
1389 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1436 struct fuse_init_out out;
1454 out.minor = MIN(req->minor, 15);
1455 fuse_struct_size = sizeof(out);
1467 out.major = FUSE_KERNEL_VERSION;
1468 out.max_readahead = req->max_readahead;
1469 out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
1470 out.max_background = 32;
1471 out.congestion_threshold = 32;
1472 out.max_write = MAX_WRITE;
1473 fuse_reply(fuse, hdr->unique, &out, fuse_struct_size);