Lines Matching refs:path

29 		    void (*cleanup_fn) (void), char *path)
33 rval = basename(path);
37 "basename(%s) failed", path);
45 const char *path)
49 rval = chdir(path);
53 "chdir(%s) failed", path);
56 "Invalid chdir(%s) return value %d", path, rval);
102 void (*cleanup_fn) (void), char *path)
106 rval = dirname(path);
110 "dirname(%s) failed", path);
484 void (cleanup_fn)(void), const char *path,
489 rval = readlink(path, buf, bufsize);
493 "readlink(%s,%p,%zu) failed", path, buf, bufsize);
496 "Invalid readlink(%s,%p,%zu) return value %zd", path,
691 void (cleanup_fn)(void), const char *path, mode_t mode)
695 rval = chmod(path, mode);
699 "chmod(%s,%04o) failed", path, mode);
702 "Invalid chmod(%s,%04o) return value %d", path, mode,
729 const char *path, uid_t owner, gid_t group)
733 rval = chown(path, owner, group);
737 "chown(%s,%d,%d) failed", path, owner, group);
740 "Invalid chown(%s,%d,%d) return value %d", path,
909 "Cannot resolve the absolute path of %s", target);
966 "Cannot resolve the absolute path of %s", target);
1053 ssize_t safe_getxattr(const char *file, const int lineno, const char *path,
1058 rval = getxattr(path, name, value, size);
1069 path, name, value, size);
1073 path, name, value, size, rval);
1079 int safe_setxattr(const char *file, const int lineno, const char *path,
1084 rval = setxattr(path, name, value, size, flags);
1096 path, name, value, size);
1100 path, name, value, size, rval);
1106 int safe_lsetxattr(const char *file, const int lineno, const char *path,
1111 rval = lsetxattr(path, name, value, size, flags);
1123 path, name, value, size, flags);
1127 path, name, value, size, flags, rval);
1160 int safe_removexattr(const char *file, const int lineno, const char *path,
1165 rval = removexattr(path, name);
1175 "removexattr(%s, %s) failed", path, name);
1178 "Invalid removexattr(%s, %s) return value %d", path,
1185 int safe_lremovexattr(const char *file, const int lineno, const char *path,
1190 rval = lremovexattr(path, name);
1200 "lremovexattr(%s, %s) failed", path, name);
1203 "Invalid lremovexattr(%s, %s) return value %d", path,