Home | History | Annotate | Download | only in sdcard

Lines Matching defs:out

781     struct fuse_entry_out out;
794 memset(&out, 0, sizeof(out));
795 attr_from_stat(&out.attr, &s, node);
796 out.attr_valid = 10;
797 out.entry_valid = 10;
798 out.nodeid = node->nid;
799 out.generation = node->gen;
801 fuse_reply(fuse, unique, &out, sizeof(out));
808 struct fuse_attr_out out;
814 memset(&out, 0, sizeof(out));
815 attr_from_stat(&out.attr, &s, node);
816 out.attr_valid = 10;
817 fuse_reply(fuse, unique, &out, sizeof(out));
1189 struct fuse_open_out out;
1216 out.fh = ptr_to_id(h);
1217 out.open_flags = 0;
1218 out.padding = 0;
1219 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1254 struct fuse_write_out out;
1270 out.size = res;
1271 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1280 struct fuse_statfs_out out;
1293 memset(&out, 0, sizeof(out));
1294 out.st.blocks = stat.f_blocks;
1295 out.st.bfree = stat.f_bfree;
1296 out.st.bavail = stat.f_bavail;
1297 out.st.files = stat.f_files;
1298 out.st.ffree = stat.f_ffree;
1299 out.st.bsize = stat.f_bsize;
1300 out.st.namelen = stat.f_namelen;
1301 out.st.frsize = stat.f_frsize;
1302 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1354 struct fuse_open_out out;
1379 out.fh = ptr_to_id(h);
1380 out.open_flags = 0;
1381 out.padding = 0;
1382 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
1429 struct fuse_init_out out;
1433 out.major = FUSE_KERNEL_VERSION;
1434 out.minor = FUSE_KERNEL_MINOR_VERSION;
1435 out.max_readahead = req->max_readahead;
1436 out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
1437 out.max_background = 32;
1438 out.congestion_threshold = 32;
1439 out.max_write = MAX_WRITE;
1440 fuse_reply(fuse, hdr->unique, &out, sizeof(out));