Lines Matching defs:ino
45 static int hello_stat(fuse_ino_t ino, struct stat *stbuf)
47 stbuf->st_ino = ino;
48 switch (ino) {
66 static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino,
74 if (hello_stat(ino, &stbuf) == -1)
88 e.ino = 2;
91 hello_stat(e.ino, &e.attr);
103 fuse_ino_t ino)
110 stbuf.st_ino = ino;
127 static void hello_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size,
132 if (ino != 1)
146 static void hello_ll_open(fuse_req_t req, fuse_ino_t ino,
149 if (ino != 2)
157 static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size,
162 assert(ino == 2);