Lines Matching defs:path
83 static int xmp_getattr(const char *path,
86 if (strcmp(path, "/") == 0) {
90 } else if (strcmp(path, "/" TIME_FILE_NAME) == 0) {
95 } else if (strcmp(path, "/" GROW_FILE_NAME) == 0) {
107 static int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
113 if (strcmp(path, "/") != 0) {
127 static int xmp_open(const char *path, struct fuse_file_info *fi) {
128 (void) path;
135 static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
139 if (strcmp(path, "/" TIME_FILE_NAME) == 0) {
147 assert(strcmp(path, "/" GROW_FILE_NAME) == 0);
179 static int invalidate(struct fuse *fuse, const char *path) {
180 int status = fuse_invalidate_path(fuse, path);