Lines Matching defs:ino
35 static int hello_stat(fuse_ino_t ino, struct stat *stbuf)
37 stbuf->st_ino = ino;
38 switch (ino) {
56 static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino,
64 if (hello_stat(ino, &stbuf) == -1)
78 e.ino = 2;
81 hello_stat(e.ino, &e.attr);
93 fuse_ino_t ino)
100 stbuf.st_ino = ino;
117 static void hello_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size,
122 if (ino != 1)
136 static void hello_ll_open(fuse_req_t req, fuse_ino_t ino,
139 if (ino != 2)
147 static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size,
152 assert(ino == 2);
156 static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
160 assert(ino == 2);
172 static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
177 assert(ino == 2);
191 static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
193 assert(ino == 2);