Searched refs:linkat (Results 1 - 13 of 13) sorted by path

/haiku-fatelf/headers/build/
H A DBeOSBuildCompatibility.h158 # define linkat(toFD, toPath, pathFD, path, flag) \ macro
/haiku-fatelf/headers/build/host/darwin/
H A Dunistd.h13 int linkat(int oldFD, const char *oldPath, int newFD, const char *newPath,
/haiku-fatelf/headers/posix/
H A Dunistd.h168 extern int linkat(int toFD, const char *toPath, int pathFD,
/haiku-fatelf/src/bin/coreutils/
H A Dconfigure3253 as_fn_append ac_func_list " linkat"
28490 gl_LIBOBJS="$gl_LIBOBJS linkat.$ac_objext"
28503 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether linkat(,AT_SYMLINK_FOLLOW) works" >&5
28504 $as_echo_n "checking whether linkat(,AT_SYMLINK_FOLLOW) works... " >&6; }
28516 /* Linux added linkat in 2.6.16, but did not add AT_SYMLINK_FOLLOW
28517 until 2.6.18. Always replace linkat to support older kernels. */
28524 return linkat (AT_FDCWD, "conftest.f1", AT_FDCWD, "conftest.f2",
28550 gl_LIBOBJS="$gl_LIBOBJS linkat.$ac_objext"
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dgnulib.mk12 # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libcoreutils --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=gnulib-tests --aux-dir=build-aux --with-tests --avoid=canonicalize-lgpl --avoid=dummy --no-libtool --macro-prefix=gl acl alloca announce-gen areadlink-with-size argmatch argv-iter assert atexit autobuild backupfile base64 c-strcase c-strtod c-strtold calloc canon-host canonicalize chown cloexec closein closeout config-h configmake crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 cycle-check d-ino d-type diacrit dirfd dirname do-release-commit-and-tag dup2 environ error euidaccess exclude exitfail faccessat fchdir fcntl fcntl-safer fdl file-type fileblocks filemode filenamecat filevercmp fnmatch-gnu fopen-safer fprintftime freopen freopen-safer fseeko fsusage fsync ftello ftruncate fts getdate getgroups gethrxtime getline getloadavg getndelim2 getopt-gnu getpagesize getpass-gnu gettext gettime gettimeofday getugroups getusershell git-version-gen gitlog-to-changelog gnu-make gnu-web-doc-update gnumakefile gnupload group-member hard-locale hash hash-pjw host-os human idcache ignore-value inttostr inttypes isapipe isblank lchmod lchown lib-ignore linebuffer link link-follow linkat long-options lstat maintainer-makefile malloc manywarnings mbrtowc mbsalign mbswidth memcasecmp memchr memcmp memcmp2 memcpy memmove mempcpy memrchr memset mgetgroups mkancesdirs mkdir mkdir-p mkstemp mktime modechange mountlist mpsort nproc obstack pathmax perl physmem posix-shell posixtm posixver priv-set progname propername putenv quote quotearg raise randint randperm readlink readtokens readtokens0 readutmp realloc regex remove rename rmdir root-dev-ino rpmatch safe-read same save-cwd savedir savewd selinux-at settime sig2str sigaction ssize_t stat-macros stat-time stdbool stdlib-safer stpcpy stpncpy strcspn strdup-posix strftime strpbrk strsignal strtod strtoimax strtol strtoumax symlink sys_stat timespec tzset uname unicodeio unistd-safer unlink-busy unlocked-io unsetenv update-copyright uptime useless-if-before-free userspec utimecmp utimens vasprintf-posix vc-list-files verify verror version-etc-fsf wcwidth winsz-ioctl winsz-termios write-any-file xalloc xfreopen xgetcwd xgethostname xmemcoll xnanosleep xprintf xprintf-posix xreadlink xstrtod xstrtoimax xstrtol xstrtold xstrtoumax yesno
1623 ## begin gnulib module linkat
1626 EXTRA_DIST += at-func2.c linkat.c
1628 EXTRA_libcoreutils_a_SOURCES += at-func2.c linkat.c
1630 ## end gnulib module linkat
H A Dlinkat.c177 linkat (int fd1, char const *file1, int fd2, char const *file2, int flag) function
190 # undef linkat macro
248 result = linkat (fd1, name, fd2, file2, 0);
259 /* Like linkat, but guarantee that AT_SYMLINK_FOLLOW works even on
266 return linkat (fd1, file1, fd2, file2, flag);
278 int result = linkat (fd1, file1, fd2, file2, flag);
H A Dunistd.in.h673 # undef linkat macro
674 # define linkat rpl_linkat macro
680 extern int linkat (int fd1, const char *path1, int fd2, const char *path2,
685 # undef linkat macro
686 # define linkat(f1,path1,f2,path2,f) \ macro
687 (GL_LINK_WARNING ("linkat is unportable - " \
688 "use gnulib module linkat for portability"), \
689 linkat (f1, path1, f2, path2,f))
/haiku-fatelf/src/bin/coreutils/src/
H A Dcopy.c1782 bool link_failed = (linkat (AT_FDCWD, earlier_file, AT_FDCWD,
1796 link_failed = (linkat (AT_FDCWD, earlier_file, AT_FDCWD,
2096 link; we guarantee this with gnulib's linkat module (on systems
2103 if (linkat (AT_FDCWD, src_name, AT_FDCWD, dst_name, 0))
H A Dln.c140 /* Which stat to use depends on whether linkat will follow the
251 : linkat (AT_FDCWD, source, AT_FDCWD, dest,
284 : linkat (AT_FDCWD, source, AT_FDCWD, dest,
/haiku-fatelf/src/build/libroot/
H A Dfs.cpp1413 return linkat(toFD, toPath, pathFD, path, flag);
H A Dfs_darwin.cpp454 linkat(int oldFD, const char *oldPath, int newFD, const char *newPath, function
H A Dfunction_remapper.cpp139 linkat(int toFD, const char* toPath, int pathFD, const char* path, int flag) function
141 HIDDEN_FUNCTION(linkat);
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dlink.c89 linkat(int toFD, const char *toPath, int linkFD, const char *linkPath, int flag) function

Completed in 205 milliseconds