Searched defs:olddirfd (Results 1 - 1 of 1) sorted by relevance

/systemd/src/basic/
H A Dfs-util.c106 int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath) { argument
110 ret = renameat2(olddirfd, oldpath, newdirfd, newpath, RENAME_NOREPLACE);
123 ret = fstatat(olddirfd, oldpath, &buf, AT_SYMLINK_NOFOLLOW);
125 ret = renameat(olddirfd, oldpath, newdirfd, newpath);
130 ret = linkat(olddirfd, oldpath, newdirfd, newpath, 0);
134 ret = unlinkat(olddirfd, oldpath, 0);

Completed in 11 milliseconds