Lines Matching refs:stbuf
69 static int tfs_stat(fuse_ino_t ino, struct stat *stbuf) {
70 stbuf->st_ino = ino;
72 stbuf->st_mode = S_IFDIR | 0755;
73 stbuf->st_nlink = 1;
77 stbuf->st_mode = S_IFREG | 0222;
78 stbuf->st_nlink = 1;
79 stbuf->st_size = 0;
111 struct stat stbuf;
115 memset(&stbuf, 0, sizeof(stbuf));
116 if (tfs_stat(ino, &stbuf) != 0)
119 fuse_reply_attr(req, &stbuf, 5);