Lines Matching refs:stbuf
36 static int tfs_stat(fuse_ino_t ino, struct stat *stbuf) {
37 stbuf->st_ino = ino;
39 stbuf->st_mode = S_IFDIR | 0755;
40 stbuf->st_nlink = 1;
44 stbuf->st_mode = file_mode;
45 stbuf->st_nlink = 1;
46 stbuf->st_size = 0;
78 struct stat stbuf;
82 memset(&stbuf, 0, sizeof(stbuf));
83 if (tfs_stat(ino, &stbuf) != 0)
86 fuse_reply_attr(req, &stbuf, 5);