Lines Matching refs:path
42 static int iconv_convpath(struct iconv *ic, const char *path, char **newpathp,
53 if (path == NULL) {
58 pathlen = strlen(path);
68 res = iconv(fromfs ? ic->fromfs : ic->tofs, (char **) &path,
103 static int iconv_getattr(const char *path, struct stat *stbuf,
108 int err = iconv_convpath(ic, path, &newpath, 0);
116 static int iconv_access(const char *path, int mask)
120 int err = iconv_convpath(ic, path, &newpath, 0);
128 static int iconv_readlink(const char *path, char *buf, size_t size)
132 int err = iconv_convpath(ic, path, &newpath, 0);
149 static int iconv_opendir(const char *path, struct fuse_file_info *fi)
153 int err = iconv_convpath(ic, path, &newpath, 0);
175 static int iconv_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
181 int err = iconv_convpath(ic, path, &newpath, 0);
194 static int iconv_releasedir(const char *path, struct fuse_file_info *fi)
198 int err = iconv_convpath(ic, path, &newpath, 0);
206 static int iconv_mknod(const char *path, mode_t mode, dev_t rdev)
210 int err = iconv_convpath(ic, path, &newpath, 0);
218 static int iconv_mkdir(const char *path, mode_t mode)
222 int err = iconv_convpath(ic, path, &newpath, 0);
230 static int iconv_unlink(const char *path)
234 int err = iconv_convpath(ic, path, &newpath, 0);
242 static int iconv_rmdir(const char *path)
246 int err = iconv_convpath(ic, path, &newpath, 0);
305 static int iconv_chmod(const char *path, mode_t mode,
310 int err = iconv_convpath(ic, path, &newpath, 0);
318 static int iconv_chown(const char *path, uid_t uid, gid_t gid,
323 int err = iconv_convpath(ic, path, &newpath, 0);
331 static int iconv_truncate(const char *path, off_t size,
336 int err = iconv_convpath(ic, path, &newpath, 0);
344 static int iconv_utimens(const char *path, const struct timespec ts[2],
349 int err = iconv_convpath(ic, path, &newpath, 0);
357 static int iconv_create(const char *path, mode_t mode,
362 int err = iconv_convpath(ic, path, &newpath, 0);
370 static int iconv_open_file(const char *path, struct fuse_file_info *fi)
374 int err = iconv_convpath(ic, path, &newpath, 0);
382 static int iconv_read_buf(const char *path, struct fuse_bufvec **bufp,
387 int err = iconv_convpath(ic, path, &newpath, 0);
395 static int iconv_write_buf(const char *path, struct fuse_bufvec *buf,
400 int err = iconv_convpath(ic, path, &newpath, 0);
408 static int iconv_statfs(const char *path, struct statvfs *stbuf)
412 int err = iconv_convpath(ic, path, &newpath, 0);
420 static int iconv_flush(const char *path, struct fuse_file_info *fi)
424 int err = iconv_convpath(ic, path, &newpath, 0);
432 static int iconv_release(const char *path, struct fuse_file_info *fi)
436 int err = iconv_convpath(ic, path, &newpath, 0);
444 static int iconv_fsync(const char *path, int isdatasync,
449 int err = iconv_convpath(ic, path, &newpath, 0);
457 static int iconv_fsyncdir(const char *path, int isdatasync,
462 int err = iconv_convpath(ic, path, &newpath, 0);
470 static int iconv_setxattr(const char *path, const char *name,
475 int err = iconv_convpath(ic, path, &newpath, 0);
484 static int iconv_getxattr(const char *path, const char *name, char *value,
489 int err = iconv_convpath(ic, path, &newpath, 0);
497 static int iconv_listxattr(const char *path, char *list, size_t size)
501 int err = iconv_convpath(ic, path, &newpath, 0);
509 static int iconv_removexattr(const char *path, const char *name)
513 int err = iconv_convpath(ic, path, &newpath, 0);
521 static int iconv_lock(const char *path, struct fuse_file_info *fi, int cmd,
526 int err = iconv_convpath(ic, path, &newpath, 0);
534 static int iconv_flock(const char *path, struct fuse_file_info *fi, int op)
538 int err = iconv_convpath(ic, path, &newpath, 0);
546 static int iconv_bmap(const char *path, size_t blocksize, uint64_t *idx)
550 int err = iconv_convpath(ic, path, &newpath, 0);
558 static off_t iconv_lseek(const char *path, off_t off, int whence,
563 int res = iconv_convpath(ic, path, &newpath, 0);