Lines Matching refs:name
70 static void hello_ll_lookup(fuse_req_t req, fuse_ino_t parent, const char *name)
74 if (parent != 1 || strcmp(name, hello_name) != 0)
92 static void dirbuf_add(fuse_req_t req, struct dirbuf *b, const char *name,
97 b->size += fuse_add_direntry(req, NULL, 0, name, NULL, 0);
101 fuse_add_direntry(req, b->p + oldsize, b->size - oldsize, name, &stbuf,
156 static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
161 if (strcmp(name, "hello_ll_getxattr_name") == 0)
172 static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
179 if (strcmp(name, "hello_ll_setxattr_name") == 0 &&
191 static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
194 if (strcmp(name, "hello_ll_removexattr_name") == 0)